diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-23 11:40:14 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-23 11:40:14 +0000 |
commit | b99c3caae8b40df163612e5d1461705a9d16fdb2 (patch) | |
tree | 8de5b9441746ff67e5a342eb12cf72fd4a468c3c /test/fixtures/comments.yml | |
parent | d74f0bfd5c53962e332c2dd4d30dafaa1105b92b (diff) | |
download | redmine-b99c3caae8b40df163612e5d1461705a9d16fdb2.tar.gz redmine-b99c3caae8b40df163612e5d1461705a9d16fdb2.zip |
Renames column comments.comments to comments.content to please Rails 5.1 (#23630).
git-svn-id: http://svn.redmine.org/redmine/trunk@16860 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures/comments.yml')
-rw-r--r-- | test/fixtures/comments.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixtures/comments.yml b/test/fixtures/comments.yml index 8b87d5b62..3e97b6d94 100644 --- a/test/fixtures/comments.yml +++ b/test/fixtures/comments.yml @@ -4,7 +4,7 @@ comments_001: commented_id: 1 id: 1 author_id: 1 - comments: my first comment + content: my first comment created_on: 2006-12-10 18:10:10 +01:00 updated_on: 2006-12-10 18:10:10 +01:00 comments_002: @@ -12,6 +12,6 @@ comments_002: commented_id: 1 id: 2 author_id: 2 - comments: This is an other comment + content: This is an other comment created_on: 2006-12-10 18:12:10 +01:00 updated_on: 2006-12-10 18:12:10 +01:00 |