From 1f152d81216368ce8780fa560917e0e95f7ef01f Mon Sep 17 00:00:00 2001 From: Rob H Date: Tue, 2 Jul 2013 22:46:40 +0530 Subject: [PATCH] WIP (Spree Update): Update authentication workflow input names --- spec/support/request/authentication_workflow.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/support/request/authentication_workflow.rb b/spec/support/request/authentication_workflow.rb index df9ab27558..4ea7252415 100644 --- a/spec/support/request/authentication_workflow.rb +++ b/spec/support/request/authentication_workflow.rb @@ -11,8 +11,8 @@ module AuthenticationWorkflow :role_ids => [admin_role.id]}) visit spree.admin_path - fill_in 'user_email', :with => 'admin@ofw.org' - fill_in 'user_password', :with => 'passw0rd' + fill_in 'spree_user_email', :with => 'admin@ofw.org' + fill_in 'spree_user_password', :with => 'passw0rd' click_button 'Login' end @@ -32,8 +32,8 @@ module AuthenticationWorkflow visit spree.root_path click_link 'Login' - fill_in 'user_email', :with => 'someone@ofw.org' - fill_in 'user_password', :with => 'passw0rd' + fill_in 'spree_user_email', :with => 'someone@ofw.org' + fill_in 'spree_user_password', :with => 'passw0rd' click_button 'Login' end end