fix source indent of GitAdapterTest

git-svn-id: http://svn.redmine.org/redmine/trunk@19957 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-08-07 12:43:56 +00:00
parent 9f8c788654
commit 6ab769cae7

View 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],
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]}
"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