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
This commit is contained in:
parent
dc7224ba1b
commit
c2cdfca0ed
|
@ -162,8 +162,9 @@ class RepositoriesBazaarControllerTest < ActionController::TestCase
|
||||||
|
|
||||||
def test_destroy_invalid_repository
|
def test_destroy_invalid_repository
|
||||||
@request.session[:user_id] = 1 # admin
|
@request.session[:user_id] = 1 # admin
|
||||||
|
assert_equal 0, @repository.changesets.count
|
||||||
@repository.fetch_changesets
|
@repository.fetch_changesets
|
||||||
@repository.reload
|
@project.reload
|
||||||
assert @repository.changesets.count > 0
|
assert @repository.changesets.count > 0
|
||||||
|
|
||||||
get :destroy, :id => PRJ_ID
|
get :destroy, :id => PRJ_ID
|
||||||
|
|
Loading…
Reference in New Issue