Respond with 404 instead of 500 when revision/entry is not found in the repository (#7307).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4710 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2011-01-14 20:22:36 +00:00
parent a81953ef84
commit 7d0b1b3830
4 changed files with 5 additions and 5 deletions
@@ -192,7 +192,7 @@ class RepositoriesGitControllerTest < ActionController::TestCase
@repository.reload
['', ' ', nil].each do |r|
get :revision, :id => 1, :rev => r
assert_response 500
assert_response 404
assert_error_tag :content => /was not found/
end
end