Commit 68c7af6c authored by Eric Davis's avatar Eric Davis

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
parent c082cfc9
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment