fix typo
This commit is contained in:
Leslie 2017-02-09 13:53:52 +08:00 committed by GitHub
parent 011cd6c783
commit fcd8be76fa
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ if defined? ActiveRecord
super
end
test 'it does not make count queires after calling #each' do
test 'it does not make count queries after calling #each' do
@scope = User.page(1).without_count
@scope.each
@ -25,7 +25,7 @@ if defined? ActiveRecord
end
end
test 'it does not make count queires after calling #last_page? or #out_of_range?' do
test 'it does not make count queries after calling #last_page? or #out_of_range?' do
@scope = User.page(1).without_count
assert_not @scope.last_page?