diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 04:11:04 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 04:11:04 +0000 |
commit | 3df1878dafaea4810d67896bc33f56efa19ebadd (patch) | |
tree | 7a41ea2ade8781a9e7f88362efb0c94c4c31f753 /test/functional/repositories_darcs_controller_test.rb | |
parent | 4bff1e94ce08f41c260827f2a228a6f4d0540356 (diff) | |
download | redmine-3df1878dafaea4810d67896bc33f56efa19ebadd.tar.gz redmine-3df1878dafaea4810d67896bc33f56efa19ebadd.zip |
Rails3: scm: darcs: fix error of test_diff at functional 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@7159 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_darcs_controller_test.rb')
-rw-r--r-- | test/functional/repositories_darcs_controller_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/repositories_darcs_controller_test.rb b/test/functional/repositories_darcs_controller_test.rb index 3f5e49a86..2b635ca29 100644 --- a/test/functional/repositories_darcs_controller_test.rb +++ b/test/functional/repositories_darcs_controller_test.rb @@ -99,8 +99,10 @@ class RepositoriesDarcsControllerTest < ActionController::TestCase end def test_diff + assert_equal 0, @repository.changesets.count @repository.fetch_changesets - @repository.reload + @project.reload + assert_equal NUM_REV, @repository.changesets.count # Full diff of changeset 5 ['inline', 'sbs'].each do |dt| get :diff, :id => PRJ_ID, :rev => 5, :type => dt |