Fixed failing password tests
This commit is contained in:
parent
3806c00822
commit
67c6d98a1b
2 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
|||
Change your password
|
||||
- unless @user.password_automatically_set?
|
||||
or recover your current one
|
||||
= form_for @user, url: profile_password_path, method: :put do |f|
|
||||
= form_for @user, url: profile_password_path, method: :put, html: {class: "update-password"} do |f|
|
||||
-if @user.errors.any?
|
||||
.alert.alert-danger
|
||||
%ul
|
||||
|
|
|
@ -64,7 +64,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
|
|||
page.within '.update-password' do
|
||||
fill_in "user_password", with: "22233344"
|
||||
fill_in "user_password_confirmation", with: "22233344"
|
||||
click_button "Save"
|
||||
click_button "Save password"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -73,7 +73,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
|
|||
fill_in "user_current_password", with: "12345678"
|
||||
fill_in "user_password", with: "22233344"
|
||||
fill_in "user_password_confirmation", with: "22233344"
|
||||
click_button "Save"
|
||||
click_button "Save password"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -82,7 +82,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
|
|||
fill_in "user_current_password", with: "12345678"
|
||||
fill_in "user_password", with: "password"
|
||||
fill_in "user_password_confirmation", with: "confirmation"
|
||||
click_button "Save"
|
||||
click_button "Save password"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue