diff options
author | Akira Matsuda <ronnie@dio.jp> | 2012-01-21 20:07:12 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2012-01-21 20:07:12 +0900 |
commit | bd603399639fe7dd12e532a89210760fa564440c (patch) | |
tree | 36798720cbf01f3c20f5353c0b6104f076e9d536 /activerecord/test/cases | |
parent | 2e13850e4c8245214568b7e133908af7db9dbb9f (diff) | |
download | rails-bd603399639fe7dd12e532a89210760fa564440c.tar.gz rails-bd603399639fe7dd12e532a89210760fa564440c.tar.bz2 rails-bd603399639fe7dd12e532a89210760fa564440c.zip |
change AR default_timezone to :utc since it's the default for AR::Railtie
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/base_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb index 3ab6973549..87a3a0deb9 100644 --- a/activerecord/test/cases/base_test.rb +++ b/activerecord/test/cases/base_test.rb @@ -689,7 +689,7 @@ class BasicsTest < ActiveRecord::TestCase } topic = Topic.find(1) topic.attributes = attributes - assert_equal Time.local(2004, 6, 24, 16, 24, 0), topic.written_on + assert_equal Time.utc(2004, 6, 24, 16, 24, 0), topic.written_on end def test_multiparameter_attributes_on_time_with_no_date @@ -938,7 +938,7 @@ class BasicsTest < ActiveRecord::TestCase } topic = Topic.find(1) topic.attributes = attributes - assert_equal Time.local(2000, 1, 1, 5, 42, 0), topic.bonus_time + assert_equal Time.utc(2000, 1, 1, 5, 42, 0), topic.bonus_time end def test_boolean |