diff options
Diffstat (limited to 'db/fixtures/development/01_admin.rb')
-rw-r--r-- | db/fixtures/development/01_admin.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/db/fixtures/development/01_admin.rb b/db/fixtures/development/01_admin.rb index 1e260236dc5..89c3623bee0 100644 --- a/db/fixtures/development/01_admin.rb +++ b/db/fixtures/development/01_admin.rb @@ -1,14 +1,14 @@ -require './spec/support/sidekiq' +require "./spec/support/sidekiq" Gitlab::Seeder.quiet do User.create!( - name: 'Administrator', - email: 'admin@example.com', - username: 'root', - password: '5iveL!fe', + name: "Administrator", + email: "admin@example.com", + username: "root", + password: "5iveL!fe", admin: true, confirmed_at: DateTime.now ) - print '.' + print "." end |