]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of GitAdapterTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 7 Aug 2020 12:43:56 +0000 (12:43 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 7 Aug 2020 12:43:56 +0000 (12:43 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19957 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/scm/adapters/git_adapter_test.rb

index 5d39d8a1defc88a6346f1437195617dabec70c3c..fc61726c7713895e03b14786339237989e6c0483 100644 (file)
@@ -64,9 +64,11 @@ class GitAdapterTest < ActiveSupport::TestCase
     end
 
     def test_scm_version
-      to_test = { "git version 1.7.3.4\n"             => [1,7,3,4],
-                  "1.6.1\n1.7\n1.8"                   => [1,6,1],
-                  "1.6.2\r\n1.8.1\r\n1.9.1"           => [1,6,2]}
+      to_test = {
+        "git version 1.7.3.4\n"   => [1, 7, 3, 4],
+        "1.6.1\n1.7\n1.8"         => [1, 6, 1],
+        "1.6.2\r\n1.8.1\r\n1.9.1" => [1, 6, 2]
+      }
       to_test.each do |s, v|
         test_scm_version_for(s, v)
       end