diff --git a/spec/models/active_record/active_record_relation_methods_spec.rb b/spec/models/active_record/active_record_relation_methods_spec.rb index fa45fcc46..b53faeabb 100644 --- a/spec/models/active_record/active_record_relation_methods_spec.rb +++ b/spec/models/active_record/active_record_relation_methods_spec.rb @@ -51,9 +51,9 @@ end end - context "when count receives options" do - it "should return a distinct set by column for rails < 4.1" do - if ActiveRecord::VERSION::STRING < "4.1.0" + if ActiveRecord::VERSION::STRING < '4.1.0' + context 'when count receives options' do + it 'should return a distinct set by column for rails < 4.1' do User.page(1).count(:name, :distinct => true).should == 4 end end