From b652eef12124278d32145c5ab49f0a5ca2f6bf6b Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Mon, 8 Jan 2024 07:17:02 -0600 Subject: [PATCH] Autocorrect rubocop --- spec/models/search_builder_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/models/search_builder_spec.rb b/spec/models/search_builder_spec.rb index e555d5693..bf61d51bb 100644 --- a/spec/models/search_builder_spec.rb +++ b/spec/models/search_builder_spec.rb @@ -35,7 +35,7 @@ described_class.default_processor_chain << :add_advanced_search_to_solr end - it 'will allow up to max per page' do + it 'allows up to max per page' do expect(builder.to_hash).to include(rows: 999) end @@ -68,7 +68,7 @@ }.with_indifferent_access end - it 'will become config.default_per_page' do + it 'becomes config.default_per_page' do expect(builder.to_hash).to include(rows: 99) end end