fix TypeError in test_sign_in_with_script_name(AuthenticationOthersTest)

This commit is contained in:
takahashim 2010-09-16 21:44:18 +08:00 committed by Carlos Antonio da Silva
parent 7b069e641b
commit a9f7b3258a
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ class AuthenticationOthersTest < ActionController::IntegrationTest
test 'sign in with script name' do
assert_nothing_raised do
get new_user_session_path, {}, "SCRIPT_NAME" => "/omg"
fill_in "email", "user@test.com"
fill_in "email", :with => "user@test.com"
end
end