1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove debug statements

They didn't help.
This commit is contained in:
Sean Griffin 2015-09-24 15:01:41 -06:00
parent 9a1ca78d34
commit 370ef3e8bb

View file

@ -89,11 +89,8 @@ class DirtyTest < ActiveRecord::TestCase
target = Class.new(ActiveRecord::Base)
target.table_name = 'pirates'
pirate = target.create
p pirate.created_on
pirate = target.create!
pirate.created_on = pirate.created_on
p pirate.created_on
p pirate.changes
assert !pirate.created_on_changed?
end
end