diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-04-30 08:48:47 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-04-30 08:48:47 +0000 |
commit | 451b6a98f752b3b5087ee2b8e5ca878bfae1eca7 (patch) | |
tree | 546517d0049ffa506216cc85afbd82c2af324cd5 /test | |
parent | 3c5c73debdc62259ce7b64e7642d39036b66e21c (diff) | |
download | redmine-451b6a98f752b3b5087ee2b8e5ca878bfae1eca7.tar.gz redmine-451b6a98f752b3b5087ee2b8e5ca878bfae1eca7.zip |
fix source code indents in GitAdapterTest
git-svn-id: http://svn.redmine.org/redmine/trunk@18111 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/lib/redmine/scm/adapters/git_adapter_test.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/lib/redmine/scm/adapters/git_adapter_test.rb b/test/unit/lib/redmine/scm/adapters/git_adapter_test.rb index f7661e95d..a32d8281b 100644 --- a/test/unit/lib/redmine/scm/adapters/git_adapter_test.rb +++ b/test/unit/lib/redmine/scm/adapters/git_adapter_test.rb @@ -399,7 +399,7 @@ class GitAdapterTest < ActiveSupport::TestCase assert_equal "# This program is free software; you can redistribute it and/or", annotate.lines[4].strip assert_equal "7234cb2750b63f47bff735edc50a1c0a433c2518", - annotate.revisions[4].identifier + annotate.revisions[4].identifier assert_equal "jsmith", annotate.revisions[4].author end @@ -413,9 +413,9 @@ class GitAdapterTest < ActiveSupport::TestCase "latin-1-branch-#{@char_1}-02") assert_equal 40, annotate.lines.size assert_equal "# This program is free software; you can redistribute it and/or", - annotate.lines[3].strip + annotate.lines[3].strip assert_equal "7234cb2750b63f47bff735edc50a1c0a433c2518", - annotate.revisions[3].identifier + annotate.revisions[3].identifier assert_equal "jsmith", annotate.revisions[3].author end end @@ -442,7 +442,7 @@ class GitAdapterTest < ActiveSupport::TestCase assert_equal "ed5bb786bbda2dee66a2d50faf51429dbc043a7b", last_rev.scmid assert_equal "ed5bb786bbda2dee66a2d50faf51429dbc043a7b", last_rev.identifier assert_equal "#{@str_felix_hex} <felix@fachschaften.org>", - last_rev.author + last_rev.author assert_equal Time.gm(2010, 9, 18, 19, 59, 46), last_rev.time end |