From 99fa8e5e942b6b528bc59118d2ed1f131d937919 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Sat, 25 Feb 2012 17:02:48 +0530 Subject: Build fix for ruby187-p358 --- actionpack/test/controller/integration_test.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'actionpack') diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index 2ad95f5c29..1ef0ba08be 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -296,8 +296,13 @@ class IntegrationProcessTest < ActionDispatch::IntegrationTest self.cookies['cookie_1'] = "sugar" self.cookies['cookie_2'] = "oatmeal" get '/cookie_monster' - assert_equal "cookie_1=; path=/\ncookie_3=chocolate; path=/", headers["Set-Cookie"] - assert_equal({"cookie_1"=>"", "cookie_2"=>"oatmeal", "cookie_3"=>"chocolate"}, cookies.to_hash) + assert headers["Set-Cookie"].include?"path=/" + assert headers["Set-Cookie"].include?"cookie_3=chocolate;" + assert headers["Set-Cookie"].include?"cookie_1=; path=/" + + assert cookies.to_hash["cookie_1"], "" + assert cookies.to_hash["cookie_2"], "oatmeal" + assert cookies.to_hash["cookie_3"], "chocolate" end end -- cgit v1.2.3