Fixed failing test in #3391. Quotes (") are html escaped.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2770 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Eric Davis 2009-05-30 21:47:10 +00:00
parent c082cfc90e
commit 68c7af6c91
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ class IssuesControllerTest < Test::Unit::TestCase
assert_response :success
assert_template 'changes.rxml'
# Inline image
assert @response.body.include?("&lt;img src=\"http://test.host/attachments/download/10\" alt=\"\" /&gt;")
assert @response.body.include?("&lt;img src=&quot;http://test.host/attachments/download/10&quot; alt=&quot;&quot; /&gt;")
end
def test_new_routing