diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-09-17 15:48:33 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-09-17 15:48:33 +0000 |
commit | 77fceb75859c78bca789898e2e3f3c3e67eddc65 (patch) | |
tree | 4b1c0b4a0cdc92f4a58f7772757551470962559e /test/unit/lib | |
parent | 858f323da1e10755f71efc1fee65a856c7b1c66b (diff) | |
download | redmine-77fceb75859c78bca789898e2e3f3c3e67eddc65.tar.gz redmine-77fceb75859c78bca789898e2e3f3c3e67eddc65.zip |
add space after comma to MercurialAdapterTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20042 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/lib')
-rw-r--r-- | test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb | 4 |
1 files changed, 2 insertions, 2 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 0f3de3937..81ae57735 100644 --- a/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb +++ b/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb @@ -86,7 +86,7 @@ class MercurialAdapterTest < ActiveSupport::TestCase repo_path = adp.info.root_url.gsub(/\\/, "/") assert_equal REPOSITORY_PATH, repo_path assert_equal '39', adp.info.lastrev.revision - assert_equal '04aed9840e9266e535f5f20f7e42c9f9f84f9cf4',adp.info.lastrev.scmid + assert_equal '04aed9840e9266e535f5f20f7e42c9f9f84f9cf4', adp.info.lastrev.scmid end end @@ -389,7 +389,7 @@ class MercurialAdapterTest < ActiveSupport::TestCase assert_equal 'c2ffe7da686aa3d956e59f2a2854cf8980a8b768', branch.scmid branch = branches[-1] - assert_equal 'test-branch-00',branch.to_s + assert_equal 'test-branch-00', branch.to_s assert_equal '13', branch.revision assert_equal '3a330eb329586ea2adb3f83237c23310e744ebe9', branch.scmid end |