fix source indent of BazaarAdapterTest

git-svn-id: http://svn.redmine.org/redmine/trunk@19930 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-07-21 13:41:00 +00:00
parent fbbfde9dc7
commit 0734527a8d

View File

@@ -31,9 +31,11 @@ class BazaarAdapterTest < ActiveSupport::TestCase
end
def test_scm_version
to_test = { "Bazaar (bzr) 2.1.2\n" => [2,1,2],
to_test = {
"Bazaar (bzr) 2.1.2\n" => [2, 1, 2],
"2.1.1\n1.7\n1.8" => [2, 1, 1],
"2.0.1\r\n1.8.1\r\n1.9.1" => [2,0,1]}
"2.0.1\r\n1.8.1\r\n1.9.1" => [2, 0, 1]
}
to_test.each do |s, v|
test_scm_version_for(s, v)
end