diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-27 12:22:11 +0200 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-12-28 14:42:15 +0100 |
commit | faab452af92dbdbdb45d399fc5bbe85bb345cb9d (patch) | |
tree | da5ab53db1cbb315718d578b62b47824289ff0ca /spec/factories.rb | |
parent | c8bb171664de94778d4e6eba7773596b265f9efb (diff) | |
download | gitlab-ce-faab452af92dbdbdb45d399fc5bbe85bb345cb9d.tar.gz |
Remove unneeded password_confirmation from seed.
Diffstat (limited to 'spec/factories.rb')
-rw-r--r-- | spec/factories.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/factories.rb b/spec/factories.rb index 50580cd1334..fc103e5b133 100644 --- a/spec/factories.rb +++ b/spec/factories.rb @@ -20,7 +20,6 @@ FactoryGirl.define do name sequence(:username) { |n| "#{Faker::Internet.user_name}#{n}" } password "12345678" - password_confirmation { password } confirmed_at { Time.now } confirmation_token { nil } |