Skip to content

Commit

Permalink
Merge pull request rails#5171 from arunagw/3-1-stable
Browse files Browse the repository at this point in the history
assert => assert_equal 3-1-stable
  • Loading branch information
spastorino committed Feb 25, 2012
2 parents 30a528a + 6e49b3d commit d693bd2
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")
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

Expand Down

0 comments on commit d693bd2

Please sign in to comment.