diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-09-17 15:48:25 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-09-17 15:48:25 +0000 |
commit | 858f323da1e10755f71efc1fee65a856c7b1c66b (patch) | |
tree | 99fcaff4b8d9dc058c28a40e8bcf115710dc9613 /test/unit/lib/redmine/scm/adapters | |
parent | 0d01ffc8fcdba299cd22c80d2ca7fbf98ddd5e7d (diff) | |
download | redmine-858f323da1e10755f71efc1fee65a856c7b1c66b.tar.gz redmine-858f323da1e10755f71efc1fee65a856c7b1c66b.zip |
fix source indent of MercurialAdapterTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20041 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/lib/redmine/scm/adapters')
-rw-r--r-- | test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb b/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb index 5e4f6b8f8..0f3de3937 100644 --- a/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb +++ b/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb @@ -50,15 +50,16 @@ class MercurialAdapterTest < ActiveSupport::TestCase end def test_hgversion - to_test = { "Mercurial Distributed SCM (version 0.9.5)\n" => [0,9,5], - "Mercurial Distributed SCM (1.0)\n" => [1,0], - "Mercurial Distributed SCM (1e4ddc9ac9f7+20080325)\n" => nil, - "Mercurial Distributed SCM (1.0.1+20080525)\n" => [1,0,1], - "Mercurial Distributed SCM (1916e629a29d)\n" => nil, - "Mercurial SCM Distribuito (versione 0.9.5)\n" => [0,9,5], - "(1.6)\n(1.7)\n(1.8)" => [1,6], - "(1.7.1)\r\n(1.8.1)\r\n(1.9.1)" => [1,7,1]} - + to_test = { + "Mercurial Distributed SCM (version 0.9.5)\n" => [0, 9, 5], + "Mercurial Distributed SCM (1.0)\n" => [1, 0], + "Mercurial Distributed SCM (1e4ddc9ac9f7+20080325)\n" => nil, + "Mercurial Distributed SCM (1.0.1+20080525)\n" => [1, 0, 1], + "Mercurial Distributed SCM (1916e629a29d)\n" => nil, + "Mercurial SCM Distribuito (versione 0.9.5)\n" => [0, 9, 5], + "(1.6)\n(1.7)\n(1.8)" => [1, 6], + "(1.7.1)\r\n(1.8.1)\r\n(1.9.1)" => [1, 7, 1] + } to_test.each do |s, v| test_hgversion_for(s, v) end @@ -66,13 +67,13 @@ class MercurialAdapterTest < ActiveSupport::TestCase def test_template_path to_test = { - [1,2] => "1.0", - [] => "1.0", - [1,2,1] => "1.0", - [1,7] => "1.0", - [1,7,1] => "1.0", - [2,0] => "1.0", - } + [1, 2] => "1.0", + [] => "1.0", + [1, 2, 1] => "1.0", + [1, 7] => "1.0", + [1, 7, 1] => "1.0", + [2, 0] => "1.0", + } to_test.each do |v, template| test_template_path_for(v, template) end |