1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

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

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