aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorBoris Slobodin <boris.slobodin@shopify.com>2017-07-31 11:10:59 -0700
committerBoris Slobodin <boris.slobodin@shopify.com>2017-07-31 11:10:59 -0700
commitd76ed9e47e8209811914eb6e2e55c232e2795471 (patch)
treeeb9e3655c5d1a31a04399e4d480727f9b0546df9 /activesupport
parent0f245882c9c8cdf15dcbb958680f7f2ea4f7d76a (diff)
downloadrails-d76ed9e47e8209811914eb6e2e55c232e2795471.tar.gz
rails-d76ed9e47e8209811914eb6e2e55c232e2795471.tar.bz2
rails-d76ed9e47e8209811914eb6e2e55c232e2795471.zip
fix typo in assert_changes error message
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 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