diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 12:53:00 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 12:53:00 +0000 |
commit | 9c0701ce12a379a143e3ebd54911deed4bf1920e (patch) | |
tree | 526350ed0a75d5ca40ed2f240fd1d3de352fca7f /test/functional | |
parent | 404b7d9a7d8936f164439a81a5686eb537ebbaa6 (diff) | |
download | redmine-9c0701ce12a379a143e3ebd54911deed4bf1920e.tar.gz redmine-9c0701ce12a379a143e3ebd54911deed4bf1920e.zip |
Rails3: scm: subversion: fix error of test_invalid_revision 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@7187 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/repositories_subversion_controller_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/repositories_subversion_controller_test.rb b/test/functional/repositories_subversion_controller_test.rb index 35efa8f30..40a841a6d 100644 --- a/test/functional/repositories_subversion_controller_test.rb +++ b/test/functional/repositories_subversion_controller_test.rb @@ -212,8 +212,10 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase end def test_invalid_revision + assert_equal 0, @repository.changesets.count @repository.fetch_changesets - @repository.reload + @project.reload + assert_equal NUM_REV, @repository.changesets.count get :revision, :id => PRJ_ID, :rev => 'something_weird' assert_response 404 assert_error_tag :content => /was not found/ |