diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-07 07:21:14 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-07 07:21:14 +0000 |
commit | 7d70e5175afde5704ccd44603245b39d3294f382 (patch) | |
tree | 5fbfac901bf8d3227443a0b3517687e82a616a3e /test/integration | |
parent | 359802ac3b60c45ac3468f8a8ed22d8ad0bac7bb (diff) | |
download | redmine-7d70e5175afde5704ccd44603245b39d3294f382.tar.gz redmine-7d70e5175afde5704ccd44603245b39d3294f382.zip |
code cleanup: rubocop: fix Layout/SpaceAfterColon in test/integration/wiki_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18611 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/wiki_test.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/integration/wiki_test.rb b/test/integration/wiki_test.rb index 0a04cc2ac..5774e413d 100644 --- a/test/integration/wiki_test.rb +++ b/test/integration/wiki_test.rb @@ -44,7 +44,7 @@ class WikiIntegrationTest < Redmine::IntegrationTest # this update should not end up with a loss of content put '/projects/ecookbook/wiki/Wiki', params: { content: { - text: "# Wiki\r\n\r\ncontent", comments:"" + text: "# Wiki\r\n\r\ncontent", comments: "" }, wiki_page: { parent_id: "" } } @@ -61,7 +61,7 @@ class WikiIntegrationTest < Redmine::IntegrationTest # this update should not end up with a loss of content put '/projects/ecookbook/wiki/Wiki', params: { content: { - version: content.version, text: "# Wiki\r\n\r\nnew content", comments:"" + version: content.version, text: "# Wiki\r\n\r\nnew content", comments: "" }, wiki_page: { parent_id: "" } } @@ -70,5 +70,4 @@ class WikiIntegrationTest < Redmine::IntegrationTest follow_redirect! assert_select 'div', /new content/ end - end |