diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-01-02 09:45:05 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-01-02 09:45:05 +0000 |
commit | 2e1bcb2abff6f78f028064299125480cbf3c2c2a (patch) | |
tree | 0e277b38e1f527d703466a2857c56953f12cf7ff /test/unit/repository_bazaar_test.rb | |
parent | 2ae2d3ef834c4d17b1c7a4e09f299b537f91d3cc (diff) | |
download | redmine-2e1bcb2abff6f78f028064299125480cbf3c2c2a.tar.gz redmine-2e1bcb2abff6f78f028064299125480cbf3c2c2a.zip |
Changing revision label and identifier at SCM adapter level (#3724, #6092)
Contributed by Yuya Nishihara.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4613 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/repository_bazaar_test.rb')
-rw-r--r-- | test/unit/repository_bazaar_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/repository_bazaar_test.rb b/test/unit/repository_bazaar_test.rb index bd1c9a9b4..5cd7da13c 100644 --- a/test/unit/repository_bazaar_test.rb +++ b/test/unit/repository_bazaar_test.rb @@ -77,7 +77,7 @@ class RepositoryBazaarTest < ActiveSupport::TestCase def test_annotate annotate = @repository.scm.annotate('doc-mkdir.txt') assert_equal 17, annotate.lines.size - assert_equal 1, annotate.revisions[0].identifier + assert_equal '1', annotate.revisions[0].identifier assert_equal 'jsmith@', annotate.revisions[0].author assert_equal 'mkdir', annotate.lines[0] end |