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

Fix warning: ambiguous first argument.

This commit is contained in:
kennyj 2012-05-18 00:50:17 +09:00
parent 85ac14309c
commit 6a48c7975e

View file

@ -37,7 +37,7 @@ module ActiveRecord
def test_time_column
owner = Owner.create!(:eats_at => Time.utc(1995,1,1,6,0))
assert_match /1995-01-01/, owner.reload.eats_at.to_s
assert_match(/1995-01-01/, owner.reload.eats_at.to_s)
end
def test_exec_insert