From 19e049d4f817390ef99953269f5852a4b8ecea12 Mon Sep 17 00:00:00 2001 Message-Id: <19e049d4f817390ef99953269f5852a4b8ecea12.1255803936.git.raorn@altlinux.org> In-Reply-To: References: From: Alexey I. Froloff Date: Sat, 17 Oct 2009 22:21:05 +0400 Subject: [PATCH 08/11] Quotes should not be escaped. Signed-off-by: Alexey I. Froloff --- test/functional/issues_controller_test.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 0c50172..395caf4 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -375,7 +375,7 @@ class IssuesControllerTest < ActionController::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 -- 1.6.4.4