diff options
author | Arun Agrawal <arunagw@gmail.com> | 2012-02-25 21:11:01 +0530 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2012-02-25 21:11:01 +0530 |
commit | a9b1397f5f0d849fc043736772568378fcbc3d0a (patch) | |
tree | 50e8fff81062244acd317fea5dc5fbc7e15b9638 /actionpack/test | |
parent | 0bfcd4ffffb42b0430ddf0a58a56c8361f61a48f (diff) | |
download | rails-a9b1397f5f0d849fc043736772568378fcbc3d0a.tar.gz rails-a9b1397f5f0d849fc043736772568378fcbc3d0a.tar.bz2 rails-a9b1397f5f0d849fc043736772568378fcbc3d0a.zip |
assert => assert_equal
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
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 |