]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of WikiIntegrationTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 Nov 2020 12:21:39 +0000 (12:21 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 Nov 2020 12:21:39 +0000 (12:21 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20390 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/wiki_test.rb

index 70da63ce8d3593984b063aa3cd8d3cbf7ef76a29..82f00127e86c38c6ef15e7fdc4425dddc7535ebc 100644 (file)
@@ -42,12 +42,16 @@ class WikiIntegrationTest < Redmine::IntegrationTest
     assert_response :success
 
     # 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: ""
-      },
-      wiki_page: { parent_id: "" }
-    }
+    put(
+      '/projects/ecookbook/wiki/Wiki',
+      :params => {
+        :content => {
+          :text => "# Wiki\r\n\r\ncontent",
+          :comments => ""
+        },
+      :wiki_page => {:parent_id => ""}
+      }
+    )
     assert_redirected_to "/projects/ecookbook/wiki/Wiki"
     follow_redirect!
     assert_select 'div', /content/
@@ -55,17 +59,26 @@ class WikiIntegrationTest < Redmine::IntegrationTest
 
     # Let's assume somebody else, or the same user in another tab, renames the
     # page while it is being edited.
-    post '/projects/ecookbook/wiki/Wiki/rename', params: { wiki_page: { title: "NewTitle" } }
+    post(
+      '/projects/ecookbook/wiki/Wiki/rename',
+      :params => {
+        :wiki_page => {:title => "NewTitle"}
+      }
+    )
     assert_redirected_to "/projects/ecookbook/wiki/NewTitle"
 
     # 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: ""
-      },
-      wiki_page: { parent_id: "" }
-    }
-
+    put(
+      '/projects/ecookbook/wiki/Wiki',
+      :params => {
+        :content => {
+          :version => content.version,
+          :text => "# Wiki\r\n\r\nnew content",
+          :comments => ""
+        },
+      :wiki_page => {:parent_id => ""}
+      }
+    )
     assert_redirected_to "/projects/ecookbook/wiki/NewTitle"
     follow_redirect!
     assert_select 'div', /new content/