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
This commit is contained in:
Toshi MARUYAMA
2020-12-02 13:31:23 +00:00
parent fd3b7dd4ca
commit a2c7ec04ac

View 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