diff options
author | Go MAEDA <maeda@farend.jp> | 2022-07-17 04:40:01 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-07-17 04:40:01 +0000 |
commit | f52b3f90eb04bf312472660b35aae8edc15eb5d5 (patch) | |
tree | 06cc36220ef2dd0a5284ee28bd9a705a471e4305 /test/fixtures | |
parent | 0afe0cf609b67f50e2758ec03f4dce0a322f91cb (diff) | |
download | redmine-f52b3f90eb04bf312472660b35aae8edc15eb5d5.tar.gz redmine-f52b3f90eb04bf312472660b35aae8edc15eb5d5.zip |
Mark edited journal notes as "Edited" (#31505).
Patch by Marius BALTEANU.
git-svn-id: https://svn.redmine.org/redmine/trunk@21713 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/journals.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/fixtures/journals.yml b/test/fixtures/journals.yml index bc7bc91b9..e6cbd95cf 100644 --- a/test/fixtures/journals.yml +++ b/test/fixtures/journals.yml @@ -1,13 +1,16 @@ --- journals_001: created_on: <%= 2.days.ago.to_date.to_s(:db) %> + updated_on: <%= 1.days.ago.to_date.to_s(:db) %> notes: "Journal notes" id: 1 journalized_type: Issue user_id: 1 journalized_id: 1 + updated_by_id: 1 journals_002: created_on: <%= 1.days.ago.to_date.to_s(:db) %> + updated_on: <%= 1.days.ago.to_date.to_s(:db) %> notes: "Some notes with Redmine links: #2, r2." id: 2 journalized_type: Issue @@ -15,6 +18,7 @@ journals_002: journalized_id: 1 journals_003: created_on: <%= 1.days.ago.to_date.to_s(:db) %> + updated_on: <%= 1.days.ago.to_date.to_s(:db) %> notes: "A comment with inline image: !picture.jpg! and a reference to #1 and r2." id: 3 journalized_type: Issue @@ -22,6 +26,7 @@ journals_003: journalized_id: 2 journals_004: created_on: <%= 1.days.ago.to_date.to_s(:db) %> + updated_on: <%= 1.days.ago.to_date.to_s(:db) %> notes: "A comment with a private version." id: 4 journalized_type: Issue @@ -30,6 +35,7 @@ journals_004: journals_005: id: 5 created_on: <%= 1.days.ago.to_date.to_s(:db) %> + updated_on: <%= 1.days.ago.to_date.to_s(:db) %> notes: "A comment on a private issue." user_id: 2 journalized_type: Issue |