diff options
Diffstat (limited to 'db/fixtures/development/18_abuse_reports.rb')
-rw-r--r-- | db/fixtures/development/18_abuse_reports.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/fixtures/development/18_abuse_reports.rb b/db/fixtures/development/18_abuse_reports.rb index a3d33706d8e..88d2f784852 100644 --- a/db/fixtures/development/18_abuse_reports.rb +++ b/db/fixtures/development/18_abuse_reports.rb @@ -4,10 +4,10 @@ module Db class AbuseReport def self.seed Gitlab::Seeder.quiet do - (::AbuseReport.default_per_page + 3).times do + (::AbuseReport.default_per_page + 3).times do |i| reported_user = ::User.create!( - username: "#{FFaker::Internet.user_name}-reported", + username: "reported_user_#{i}", name: FFaker::Name.name, email: FFaker::Internet.email, confirmed_at: DateTime.now, |