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/factories.rb | |
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/factories.rb')
-rw-r--r-- | spec/factories.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories.rb b/spec/factories.rb index 3b0e305460d..daf84173648 100644 --- a/spec/factories.rb +++ b/spec/factories.rb @@ -15,7 +15,7 @@ FactoryGirl.define do email { Faker::Internet.email } name sequence(:username) { |n| "#{Faker::Internet.user_name}#{n}" } - password "123456" + password "12345678" password_confirmation { password } confirmed_at { Time.now } confirmation_token { nil } |