summaryrefslogtreecommitdiffstats
path: root/test/unit/repository_darcs_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-12 00:13:56 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-12 00:13:56 +0000
commitd4bf2a70048250f216d13d463d4488e053c30183 (patch)
tree1da209216c011ad6ee75155378786fe51a5f70c5 /test/unit/repository_darcs_test.rb
parentfa4a41a653837df5e9506f38f1741648a8b4a39d (diff)
downloadredmine-d4bf2a70048250f216d13d463d4488e053c30183.tar.gz
redmine-d4bf2a70048250f216d13d463d4488e053c30183.zip
Rails3: scm: darcs: fix error of test_entries_invalid_revision at unit model test
On Rails 3.1, ActiveRecord::HasManyThroughCantAssociateThroughHasOneOrManyReflection error raises. For more details, see r7062. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7119 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/repository_darcs_test.rb')
-rw-r--r--test/unit/repository_darcs_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/repository_darcs_test.rb b/test/unit/repository_darcs_test.rb
index f3f04a110..ef7224d9a 100644
--- a/test/unit/repository_darcs_test.rb
+++ b/test/unit/repository_darcs_test.rb
@@ -61,8 +61,10 @@ class RepositoryDarcsTest < ActiveSupport::TestCase
end
def test_entries_invalid_revision
+ assert_equal 0, @repository.changesets.count
@repository.fetch_changesets
- @repository.reload
+ @project.reload
+ assert_equal NUM_REV, @repository.changesets.count
assert_nil @repository.entries('', '123')
end