aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test_select_manager.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_select_manager.rb b/test/test_select_manager.rb
index e6b13e748d..9a225edeec 100644
--- a/test/test_select_manager.rb
+++ b/test/test_select_manager.rb
@@ -1198,7 +1198,7 @@ module Arel
manager.ast.cores.last.set_quantifier.class.must_equal Arel::Nodes::Distinct
manager.distinct(false)
- manager.ast.cores.last.set_quantifier.must_equal nil
+ manager.ast.cores.last.set_quantifier.must_be_nil
end
it "chains" do
@@ -1217,7 +1217,7 @@ module Arel
manager.ast.cores.last.set_quantifier.must_equal Arel::Nodes::DistinctOn.new(table['id'])
manager.distinct_on(false)
- manager.ast.cores.last.set_quantifier.must_equal nil
+ manager.ast.cores.last.set_quantifier.must_be_nil
end
it "chains" do