aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/transaction_callbacks_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-09-15 00:41:56 +0100
committerJon Leighton <j@jonathanleighton.com>2012-09-15 00:41:56 +0100
commit60c88e64e26682a954f7c8cd6669d409ffffcc8b (patch)
tree212d854fb0230e9ca2490aa37f269b2fd06d5884 /activerecord/test/cases/transaction_callbacks_test.rb
parent02f56554d68cddae02ccc4a8511cc5c64210d258 (diff)
downloadrails-60c88e64e26682a954f7c8cd6669d409ffffcc8b.tar.gz
rails-60c88e64e26682a954f7c8cd6669d409ffffcc8b.tar.bz2
rails-60c88e64e26682a954f7c8cd6669d409ffffcc8b.zip
Fix test
Accidentally checked in commented test code. Fail. >_<
Diffstat (limited to 'activerecord/test/cases/transaction_callbacks_test.rb')
-rw-r--r--activerecord/test/cases/transaction_callbacks_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/transaction_callbacks_test.rb b/activerecord/test/cases/transaction_callbacks_test.rb
index 7ec3280bcc..961ba8d9ba 100644
--- a/activerecord/test/cases/transaction_callbacks_test.rb
+++ b/activerecord/test/cases/transaction_callbacks_test.rb
@@ -354,7 +354,7 @@ class SaveFromAfterCommitBlockTest < ActiveRecord::TestCase
def test_after_commit_in_save
topic = TopicWithSaveInCallback.new()
topic.save
- # assert_equal true, topic.cached
- # assert_equal true, topic.record_updated
+ assert_equal true, topic.cached
+ assert_equal true, topic.record_updated
end
end