diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-07-20 15:37:52 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-07-20 15:37:52 -0700 |
commit | d8736b266b00e58b8f8f29259913d9306605da14 (patch) | |
tree | 19219e08e4915b378604957a923978ec1c9ea239 /activerecord/test/fixtures | |
parent | 09a488456aecf2b4ef7f200546b281cabda56e2f (diff) | |
download | rails-d8736b266b00e58b8f8f29259913d9306605da14.tar.gz rails-d8736b266b00e58b8f8f29259913d9306605da14.tar.bz2 rails-d8736b266b00e58b8f8f29259913d9306605da14.zip |
Revert "this fixes a brittle test in fixtures_test.rb which fails when you are in a timezone which is ahead of UTC but UTC is in the previous day still."
This reverts commit f92cefa95f44bcd550c402a7f5ba914f3bd783cc.
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r-- | activerecord/test/fixtures/pirates.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/fixtures/pirates.yml b/activerecord/test/fixtures/pirates.yml index a47d894249..abb91101da 100644 --- a/activerecord/test/fixtures/pirates.yml +++ b/activerecord/test/fixtures/pirates.yml @@ -5,5 +5,5 @@ blackbeard: redbeard: catchphrase: "Avast!" parrot: louis - created_on: <%= 2.weeks.ago.utc.to_s(:db) %> - updated_on: <%= 2.weeks.ago.utc.to_s(:db) %> + created_on: <%= 2.weeks.ago.to_s(:db) %> + updated_on: <%= 2.weeks.ago.to_s(:db) %> |