diff options
author | Boris Slobodin <boris.slobodin@shopify.com> | 2017-07-31 11:10:59 -0700 |
---|---|---|
committer | Boris Slobodin <boris.slobodin@shopify.com> | 2017-07-31 11:10:59 -0700 |
commit | d76ed9e47e8209811914eb6e2e55c232e2795471 (patch) | |
tree | eb9e3655c5d1a31a04399e4d480727f9b0546df9 /activesupport/lib/active_support | |
parent | 0f245882c9c8cdf15dcbb958680f7f2ea4f7d76a (diff) | |
download | rails-d76ed9e47e8209811914eb6e2e55c232e2795471.tar.gz rails-d76ed9e47e8209811914eb6e2e55c232e2795471.tar.bz2 rails-d76ed9e47e8209811914eb6e2e55c232e2795471.zip |
fix typo in assert_changes error message
Diffstat (limited to 'activesupport/lib/active_support')
-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 f6366bfd39..e2bc51ff7a 100644 --- a/activesupport/lib/active_support/testing/assertions.rb +++ b/activesupport/lib/active_support/testing/assertions.rb @@ -157,7 +157,7 @@ module ActiveSupport after = exp.call if to == UNTRACKED - error = "#{expression.inspect} didn't changed" + error = "#{expression.inspect} didn't change" error = "#{message}.\n#{error}" if message assert_not_equal before, after, error else |