Update tests for changes in latest Redmine core error pages

This commit is contained in:
Eric Davis
2010-11-16 09:30:24 -08:00
parent 4e705fd1eb
commit 65919d382b
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ class RatesControllerTest < ActionController::TestCase
should 'should display the standard unauthorized page' do
instance_eval(&block)
assert_template 'common/403'
assert_template 'common/error'
end
context "with mime type of xml" do

View File

@@ -28,7 +28,7 @@ module IntegrationTestHelper
def assert_forbidden
assert_response :forbidden
assert_template 'common/403'
assert_template 'common/error'
end
def assert_requires_login