summaryrefslogtreecommitdiffstats
path: root/test/integration/repositories_git_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/repositories_git_test.rb')
-rw-r--r--test/integration/repositories_git_test.rb11
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