diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-25 20:07:55 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-25 20:07:55 +0200 |
commit | 58601ebdab0cfa90e823418ccd587a0a503a985f (patch) | |
tree | a4badcf366dccf508a8ab8adff6f4fc87425e7fe /spec/support | |
parent | 7ed15bbc0d95aba8cba82148712f737025adfefc (diff) | |
download | gitlab-ce-58601ebdab0cfa90e823418ccd587a0a503a985f.tar.gz |
Fix tests after user password length was changed
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/support')
-rw-r--r-- | spec/support/login_helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/login_helpers.rb b/spec/support/login_helpers.rb index 025534a900d..cc0ec2f4e3d 100644 --- a/spec/support/login_helpers.rb +++ b/spec/support/login_helpers.rb @@ -16,7 +16,7 @@ module LoginHelpers def login_with(user) visit new_user_session_path fill_in "user_login", with: user.email - fill_in "user_password", with: "123456" + fill_in "user_password", with: "12345678" click_button "Sign in" Thread.current[:current_user] = user end |