Fix tense of example description

This commit is contained in:
Stan Hu 2018-07-25 05:25:03 -07:00
parent 4160a8dd81
commit 6762aa0d45
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ describe BitbucketServer::Paginator do
let(:paginator) { described_class.new(connection, 'http://more-data', :pull_request) }
let(:page_attrs) { { 'isLastPage' => false, 'nextPageStart' => 1 } }
it 'return items and raises StopIteration in the end' do
it 'returns items and raises StopIteration in the end' do
allow(paginator).to receive(:fetch_next_page).and_return(first_page)
expect(paginator.items).to match(['item_1'])