diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-12-02 13:31:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-12-02 13:31:23 +0000 |
commit | a2c7ec04ac8fe1f2de5c372480a80b1d0cbbd0cc (patch) | |
tree | 8aa77952318d17ca52e80643cd1dbe48c2031ae9 | |
parent | fd3b7dd4ca8291a67b20c7516be76eecec3c6191 (diff) | |
download | redmine-a2c7ec04ac8fe1f2de5c372480a80b1d0cbbd0cc.tar.gz redmine-a2c7ec04ac8fe1f2de5c372480a80b1d0cbbd0cc.zip |
fix source indent of test/integration/repositories_git_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20539 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/integration/repositories_git_test.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/integration/repositories_git_test.rb b/test/integration/repositories_git_test.rb index 8c13b63c8..3e1161e10 100644 --- a/test/integration/repositories_git_test.rb +++ b/test/integration/repositories_git_test.rb @@ -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 |