Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
spastorino committed Jul 14, 2011
1 parent 13b2153 commit 9441c94
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions actionpack/test/dispatch/test_request_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ class TestRequestTest < ActiveSupport::TestCase
assert_equal({"user_name" => "david", "login" => "XJ-122"}, req.cookies)
assert_equal %w(login=XJ-122 user_name=david), req.env["HTTP_COOKIE"].split(/; /).sort

assert_nothing_raised do
req.cookies["login"] = nil
assert_equal({"user_name" => "david", "login" => nil}, req.cookies)
assert_equal %w(login= user_name=david), req.env["HTTP_COOKIE"].split(/; /).sort
end
end
assert_nothing_raised do
req.cookies["login"] = nil
assert_equal({"user_name" => "david", "login" => nil}, req.cookies)
assert_equal %w(login= user_name=david), req.env["HTTP_COOKIE"].split(/; /).sort
end
end
end

0 comments on commit 9441c94

Please sign in to comment.