]> source.dussan.org Git - redmine.git/commitdiff
Rails3: scm: subversion: fix error of test_format_identifier at unit model test
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 12 Sep 2011 04:06:06 +0000 (04:06 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 12 Sep 2011 04:06:06 +0000 (04:06 +0000)
On Rails 3.1, ActiveRecord::HasManyThroughCantAssociateThroughHasOneOrManyReflection error raises.
For more details, see r7062.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7155 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/repository_subversion_test.rb

index c15b0632715c547a3ca2881bdccb281257583b9c..179d4c9b47a84ca336e51c4b23a236ef1622c529 100644 (file)
@@ -133,8 +133,10 @@ class RepositorySubversionTest < ActiveSupport::TestCase
     end
 
     def test_format_identifier
+      assert_equal 0, @repository.changesets.count
       @repository.fetch_changesets
-      @repository.reload
+      @project.reload
+      assert_equal NUM_REV, @repository.changesets.count
       c = @repository.changesets.find_by_revision('1')
       assert_equal c.format_identifier, c.revision
     end