From a9b1397f5f0d849fc043736772568378fcbc3d0a Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Sat, 25 Feb 2012 21:11:01 +0530 Subject: assert => assert_equal --- actionpack/test/controller/integration_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actionpack/test') diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index ea44e68da1..f96d31eae8 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -299,9 +299,9 @@ class IntegrationProcessTest < ActionDispatch::IntegrationTest _headers = headers["Set-Cookie"].split("\n") assert _headers.include?("cookie_1=; path=/") assert _headers.include?("cookie_3=chocolate; path=/") - assert cookies.to_hash["cookie_1"], "" - assert cookies.to_hash["cookie_2"], "oatmeal" - assert cookies.to_hash["cookie_3"], "chocolate" + assert_equal cookies.to_hash["cookie_1"], "" + assert_equal cookies.to_hash["cookie_2"], "oatmeal" + assert_equal cookies.to_hash["cookie_3"], "chocolate" end end -- cgit v1.2.3