From 68c7af6c914ab39d04007ae549ecc9b90548f98c 2009-05-30 21:47:10 From: Eric Davis Date: 2009-05-30 21:47:10 Subject: [PATCH] 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 --- diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 4b5c2d3..16c1a08 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -374,7 +374,7 @@ class IssuesControllerTest < Test::Unit::TestCase assert_response :success assert_template 'changes.rxml' # Inline image - assert @response.body.include?("<img src=\"http://test.host/attachments/download/10\" alt=\"\" />") + assert @response.body.include?("<img src="http://test.host/attachments/download/10" alt="" />") end def test_new_routing