aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-12 17:00:31 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-12 17:00:31 -0600
commitae1b451e65b864835a65bfbb2409f0fd5451fb52 (patch)
tree0ddeddd72c939c815c05097c5d7a834503bed878
parent8a3046133aba188d81f31b034d6594899b23c70c (diff)
parent48af90f87a5322dcacd9f0cf3d9837ec9ca54ae8 (diff)
downloadrails-ae1b451e65b864835a65bfbb2409f0fd5451fb52.tar.gz
rails-ae1b451e65b864835a65bfbb2409f0fd5451fb52.tar.bz2
rails-ae1b451e65b864835a65bfbb2409f0fd5451fb52.zip
Merge pull request #15666 from akshay-vishnoi/doc_changes
Correct output of #assert_not
-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.
#