diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-03-24 08:52:38 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-03-24 08:52:38 +0100 |
commit | ef2bff028464ad237cb42dde1136721af2fa376b (patch) | |
tree | 89db3ccbb60e63fc1c610886fcacb04ae8b6ac75 | |
parent | 639159cebed293b5f3a5101ba0b6391c17e0babd (diff) | |
parent | ea5e3192d57c80469738727581fe3c24586b5f4e (diff) | |
download | rails-ef2bff028464ad237cb42dde1136721af2fa376b.tar.gz rails-ef2bff028464ad237cb42dde1136721af2fa376b.tar.bz2 rails-ef2bff028464ad237cb42dde1136721af2fa376b.zip |
Merge pull request #19491 from tgxworld/fix_incorrect_description
Fix incorrect description for `assert_nothing_raised`. [ci skip]
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index 9a45c07e8d..24b8f4b9f9 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -73,7 +73,7 @@ module ActiveSupport alias :assert_not_respond_to :refute_respond_to alias :assert_not_same :refute_same - # Fails if the block raises an exception. + # Reveals the intention that the block should not raise any exception. # # assert_nothing_raised do # ... |