aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/test/core_ext/object/inclusion_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/object/inclusion_test.rb b/activesupport/test/core_ext/object/inclusion_test.rb
index 33f40b60b1..c5e2cc693a 100644
--- a/activesupport/test/core_ext/object/inclusion_test.rb
+++ b/activesupport/test/core_ext/object/inclusion_test.rb
@@ -50,6 +50,6 @@ class InTest < ActiveSupport::TestCase
def test_present_in
assert_equal "stuff", "stuff".present_in(%w( lots of stuff ))
- assert_not "stuff".present_in(%w( lots of crap ))
+ assert_nil "stuff".present_in(%w( lots of crap ))
end
end