aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-06-12 22:46:39 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-06-12 22:46:39 +0530
commit48af90f87a5322dcacd9f0cf3d9837ec9ca54ae8 (patch)
tree0cef72e0c9e927ccb3fbcc05c6f5120724550366 /activesupport
parentcaf1bfccc680510b48e058d40c2a99cae965b5cb (diff)
downloadrails-48af90f87a5322dcacd9f0cf3d9837ec9ca54ae8.tar.gz
rails-48af90f87a5322dcacd9f0cf3d9837ec9ca54ae8.tar.bz2
rails-48af90f87a5322dcacd9f0cf3d9837ec9ca54ae8.zip
[ci skip] Correct output of #assert_not
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/testing/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/assertions.rb b/activesupport/lib/active_support/testing/assertions.rb
index 76a591bc3b..11cca82995 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -9,7 +9,7 @@ module ActiveSupport
#
# assert_not nil # => true
# assert_not false # => true
- # assert_not 'foo' # => 'foo' is not nil or false
+ # assert_not 'foo' # => Expected "foo" to be nil or false
#
# An error message can be specified.
#