diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-10 11:06:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-10 11:06:21 +0000 |
commit | 252e4983fba7e11103d1da29650a62f54dd46433 (patch) | |
tree | 1b14e1aa2e11af7973af6255baf3e4c4b494958f /test/fixtures/issues.yml | |
parent | 3e3315c103f232655ac8553fcd476792f7d24691 (diff) | |
download | redmine-252e4983fba7e11103d1da29650a62f54dd46433.tar.gz redmine-252e4983fba7e11103d1da29650a62f54dd46433.zip |
Fixes a fixture with valid attributes (start_date < due_date).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4482 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures/issues.yml')
-rw-r--r-- | test/fixtures/issues.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixtures/issues.yml b/test/fixtures/issues.yml index 15fb5b271..e13817780 100644 --- a/test/fixtures/issues.yml +++ b/test/fixtures/issues.yml @@ -53,8 +53,8 @@ issues_003: assigned_to_id: 3 author_id: 2 status_id: 1 - start_date: <%= 1.day.from_now.to_date.to_s(:db) %> - due_date: <%= 40.day.from_now.to_date.to_s(:db) %> + start_date: <%= 15.day.ago.to_date.to_s(:db) %> + due_date: <%= 5.day.ago.to_date.to_s(:db) %> root_id: 3 lft: 1 rgt: 2 |