use escaped "can't" constant at TrackersControllerTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12782 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-02-04 04:32:37 +00:00
parent c38fa97165
commit 0d4551c270
1 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ class TrackersControllerTest < ActionController::TestCase
end
assert_response :success
assert_template 'new'
assert_error_tag :content => /name can&#x27;t be blank/i
assert_error_tag :content => /name #{ESCAPED_CANT} be blank/i
end
def test_edit
@ -154,7 +154,7 @@ class TrackersControllerTest < ActionController::TestCase
put :update, :id => 1, :tracker => { :name => '' }
assert_response :success
assert_template 'edit'
assert_error_tag :content => /name can&#x27;t be blank/i
assert_error_tag :content => /name #{ESCAPED_CANT} be blank/i
end
def test_move_lower