diff options
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/issues.yml | 6 | ||||
-rw-r--r-- | test/fixtures/journals.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/fixtures/issues.yml b/test/fixtures/issues.yml index ef4ef9de8..6649849d8 100644 --- a/test/fixtures/issues.yml +++ b/test/fixtures/issues.yml @@ -1,8 +1,8 @@ ---
issues_001:
- created_on: 2006-07-19 21:02:17 +02:00
+ created_on: <%= 3.days.ago.to_date.to_s(:db) %>
project_id: 1
- updated_on: 2006-07-19 21:04:30 +02:00
+ updated_on: <%= 1.day.ago.to_date.to_s(:db) %>
priority_id: 4
subject: Can't print recipes
id: 1
@@ -55,4 +55,4 @@ issues_004: assigned_to_id:
author_id: 2
status_id: 1
-
\ No newline at end of file +
diff --git a/test/fixtures/journals.yml b/test/fixtures/journals.yml index 49aab14d7..0de938168 100644 --- a/test/fixtures/journals.yml +++ b/test/fixtures/journals.yml @@ -1,6 +1,6 @@ ---
journals_001:
- created_on: 2007-01-26 19:58:40 +01:00
+ created_on: <%= 2.days.ago.to_date.to_s(:db) %>
notes: "Journal notes"
id: 1
journalized_type: Issue
|