diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2016-03-03 19:37:20 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2016-03-03 19:37:20 +0000 |
commit | ba869ae50d0c43867f7d34a4f7e08520c1e4c7f1 (patch) | |
tree | ae40280ee53ec83710bd58fda0befd234d7e1bac /features | |
parent | bd269eaab993c4f2faa03e0e3a5cef72a82d3f2b (diff) | |
parent | 8df4a70887bdc07971e548d2d1c45cd389f5627b (diff) | |
download | gitlab-ce-ba869ae50d0c43867f7d34a4f7e08520c1e4c7f1.tar.gz |
Merge branch 'password-settings' into 'master'
Password settings page
Closes #13858
![](https://gitlab.com/gitlab-org/gitlab-ce/uploads/ebb9b67d69daa8872d79626b85f99b52/password-settings.png)
See merge request !3033
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/profile/profile.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/profile/profile.rb b/features/steps/profile/profile.rb index a60db1cb534..0c60328583a 100644 --- a/features/steps/profile/profile.rb +++ b/features/steps/profile/profile.rb @@ -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 |