From 68c7af6c914ab39d04007ae549ecc9b90548f98c Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Sat, 30 May 2009 21:47:10 +0000 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 --- test/functional/issues_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 4b5c2d34..16c1a080 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 -- 2.11.0