Skip to content

Commit

Permalink
Merge pull request #5170 from arunagw/3-2-stable
Browse files Browse the repository at this point in the history
assert => assert_equal
  • Loading branch information
spastorino committed Feb 25, 2012
2 parents 8125304 + a9b1397 commit 0a1357b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actionpack/test/controller/integration_test.rb
Expand Up @@ -299,9 +299,9 @@ def test_post
_headers = headers["Set-Cookie"].split("\n") _headers = headers["Set-Cookie"].split("\n")
assert _headers.include?("cookie_1=; path=/") assert _headers.include?("cookie_1=; path=/")
assert _headers.include?("cookie_3=chocolate; path=/") assert _headers.include?("cookie_3=chocolate; path=/")
assert cookies.to_hash["cookie_1"], "" assert_equal cookies.to_hash["cookie_1"], ""
assert cookies.to_hash["cookie_2"], "oatmeal" assert_equal cookies.to_hash["cookie_2"], "oatmeal"
assert cookies.to_hash["cookie_3"], "chocolate" assert_equal cookies.to_hash["cookie_3"], "chocolate"
end end
end end


Expand Down

0 comments on commit 0a1357b

Please sign in to comment.