diff options
author | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2014-06-12 22:46:39 +0530 |
---|---|---|
committer | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2014-06-12 22:46:39 +0530 |
commit | 48af90f87a5322dcacd9f0cf3d9837ec9ca54ae8 (patch) | |
tree | 0cef72e0c9e927ccb3fbcc05c6f5120724550366 /activesupport | |
parent | caf1bfccc680510b48e058d40c2a99cae965b5cb (diff) | |
download | rails-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.rb | 2 |
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. # |