]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of test/integration/repositories_git_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Dec 2020 13:31:23 +0000 (13:31 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Dec 2020 13:31:23 +0000 (13:31 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20539 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/repositories_git_test.rb

index 8c13b63c8d0248971d725e85ab7845eb21ef5be3..3e1161e10b1c0b30f7f38eefbc1e0a264193530d 100644 (file)
@@ -31,11 +31,12 @@ class RepositoriesGitTest < Redmine::IntegrationTest
   def setup
     User.current = nil
     @project    = Project.find(PRJ_ID)
-    @repository = Repository::Git.create(
-                      :project       => @project,
-                      :url           => REPOSITORY_PATH,
-                      :path_encoding => 'ISO-8859-1'
-                      )
+    @repository =
+      Repository::Git.create(
+        :project       => @project,
+        :url           => REPOSITORY_PATH,
+        :path_encoding => 'ISO-8859-1'
+      )
     assert @repository
   end