diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-04 17:17:43 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-04 17:17:43 +0000 |
commit | 3dcf7fe4e91f0d032915d5ab6c1e7dfcfc0ab935 (patch) | |
tree | df712edda49e8ecfa619ca010df432a0341e1e77 /activerecord | |
parent | e3bfd08cbcbffddf53de4f0f6030a794402cf532 (diff) | |
download | rails-3dcf7fe4e91f0d032915d5ab6c1e7dfcfc0ab935.tar.gz rails-3dcf7fe4e91f0d032915d5ab6c1e7dfcfc0ab935.tar.bz2 rails-3dcf7fe4e91f0d032915d5ab6c1e7dfcfc0ab935.zip |
Fixed that Date was in incorrect format in tasks.yml (closes #4072) [mlaster@metavillage.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3758 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/fixtures/tasks.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/fixtures/tasks.yml b/activerecord/test/fixtures/tasks.yml index c8b158dc17..1e6a061acc 100644 --- a/activerecord/test/fixtures/tasks.yml +++ b/activerecord/test/fixtures/tasks.yml @@ -1,7 +1,7 @@ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html first_task: id: 1 - starting: "2005-03-30 06:30:00" - ending: "2005-03-30 08:30:00" + starting: 2005-03-30t06:30:00.00+01:00 + ending: 2005-03-30t08:30:00.00+01:00 another_task: id: 2 |