aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-11-30 21:49:24 +0000
committerJon Leighton <j@jonathanleighton.com>2011-11-30 23:18:40 +0000
commit4f20eb5908895ac1f074cc1e2bc60f58e2d50a03 (patch)
tree3f58423d7d4506d9079dc9efd267956955846cbc /activerecord/test
parent035b4244bae8620515d3757fdc3be42ac77dddec (diff)
downloadrails-4f20eb5908895ac1f074cc1e2bc60f58e2d50a03.tar.gz
rails-4f20eb5908895ac1f074cc1e2bc60f58e2d50a03.tar.bz2
rails-4f20eb5908895ac1f074cc1e2bc60f58e2d50a03.zip
Fix typo
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/store_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/store_test.rb b/activerecord/test/cases/store_test.rb
index 074fd39e65..5a3f9a9711 100644
--- a/activerecord/test/cases/store_test.rb
+++ b/activerecord/test/cases/store_test.rb
@@ -24,9 +24,9 @@ class StoreTest < ActiveRecord::TestCase
@john.settings[:icecream] = 'graeters'
@john.save
- assert 'graeters', @john.reload.settings[:icecream]
+ assert_equal 'graeters', @john.reload.settings[:icecream]
end
-
+
test "updating the store will mark it as changed" do
@john.color = 'red'
assert @john.settings_changed?