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:
parent
9a1ca78d34
commit
370ef3e8bb
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue