Skip to content

Commit

Permalink
Remove puts in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Palazhchenko committed Dec 10, 2010
1 parent 3f1a2c8 commit 3017edc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/functional/sessions_controller_test.rb
Expand Up @@ -35,8 +35,7 @@ def test_should_remember_me
def test_should_not_remember_me
@request.cookies["auth_token"] = nil
post :create, :login => 'quentin', :password => 'monkey', :remember_me => "0"
puts @response.cookies["auth_token"]
assert @response.cookies["auth_token"].blank?
assert @response.cookies["auth_token"].blank?, @response.cookies["auth_token"]
end

def test_should_delete_token_on_logout
Expand Down

0 comments on commit 3017edc

Please sign in to comment.