diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 00:53:11 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 00:53:11 +0000 |
commit | c2cdfca0ed5e567028ed3bfdbb53bb3ce81a132a (patch) | |
tree | ca30164f69e3d57577d1ab1c84e50af8ea378b5b /test/functional/repositories_bazaar_controller_test.rb | |
parent | dc7224ba1b6a41819e1e57425f4b57af70f349bf (diff) | |
download | redmine-c2cdfca0ed5e567028ed3bfdbb53bb3ce81a132a.tar.gz redmine-c2cdfca0ed5e567028ed3bfdbb53bb3ce81a132a.zip |
Rails3: scm: bazaar: fix error of test_destroy_invalid_repository 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@7123 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_bazaar_controller_test.rb')
-rw-r--r-- | test/functional/repositories_bazaar_controller_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/repositories_bazaar_controller_test.rb b/test/functional/repositories_bazaar_controller_test.rb index 02c87ff4a..7e963ac1f 100644 --- a/test/functional/repositories_bazaar_controller_test.rb +++ b/test/functional/repositories_bazaar_controller_test.rb @@ -162,8 +162,9 @@ class RepositoriesBazaarControllerTest < ActionController::TestCase def test_destroy_invalid_repository @request.session[:user_id] = 1 # admin + assert_equal 0, @repository.changesets.count @repository.fetch_changesets - @repository.reload + @project.reload assert @repository.changesets.count > 0 get :destroy, :id => PRJ_ID |