From fcd8be76faf53ce21498e9691f7b3ba86526ec7d Mon Sep 17 00:00:00 2001 From: Leslie Date: Thu, 9 Feb 2017 13:53:52 +0800 Subject: [PATCH] typo fix typo --- .../test/models/active_record/paginable_without_count_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kaminari-core/test/models/active_record/paginable_without_count_test.rb b/kaminari-core/test/models/active_record/paginable_without_count_test.rb index 8547170..95e8b09 100644 --- a/kaminari-core/test/models/active_record/paginable_without_count_test.rb +++ b/kaminari-core/test/models/active_record/paginable_without_count_test.rb @@ -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?