Commit faab452a authored by Ciro Santilli's avatar Ciro Santilli

Remove unneeded password_confirmation from seed.

parent c8bb1716
......@@ -5,7 +5,6 @@ Gitlab::Seeder.quiet do
s.email = 'admin@example.com'
s.username = 'root'
s.password = '5iveL!fe'
s.password_confirmation = '5iveL!fe'
s.admin = true
s.projects_limit = 100
s.confirmed_at = DateTime.now
......
......@@ -11,7 +11,6 @@ admin = User.create(
name: "Administrator",
username: 'root',
password: password,
password_confirmation: password,
password_expires_at: expire_time,
theme_id: Gitlab::Theme::MARS
......
......@@ -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 }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment