scm: git: fix test revision value of unit app test

Hash range is from 0 to 9 and a to f

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9285 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-03-28 17:18:33 +00:00
parent 5232d379f9
commit d2c80656f1
1 changed files with 2 additions and 2 deletions

View File

@ -190,14 +190,14 @@ class RepositoryGitTest < ActiveSupport::TestCase
@project.reload
assert_equal NUM_REV - 5, @repository.changesets.count
extra_info_heads << "abcd1234efgh"
extra_info_heads << "1234abcd5678"
h = {}
h["heads"] = extra_info_heads
@repository.merge_extra_info(h)
@repository.save
@project.reload
h1 = @repository.extra_info["heads"].dup
assert h1.index("abcd1234efgh")
assert h1.index("1234abcd5678")
assert_equal 5, h1.size
@repository.fetch_changesets