]> source.dussan.org Git - redmine.git/commitdiff
scm: git: fix test revision value of unit app test
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 28 Mar 2012 17:18:33 +0000 (17:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 28 Mar 2012 17:18:33 +0000 (17:18 +0000)
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

test/unit/repository_git_test.rb

index 91b41af94887e893bec3abe82cab335af470fe36..aa4308fdd3dfc04a07c8e3342e77e4a7672104e4 100644 (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