diff --git a/db/fixtures/development/14_pipelines.rb b/db/fixtures/development/14_pipelines.rb index 9a3d54fb56ce418c31f54edd67dabceb9fd90fef..36b0d16bfb96d826462776d1ff888eb1ccf09027 100644 --- a/db/fixtures/development/14_pipelines.rb +++ b/db/fixtures/development/14_pipelines.rb @@ -1,4 +1,4 @@ -class Gitlab::Seeder::Builds +class Gitlab::Seeder::Pipelines STAGES = %w[build test deploy notify] BUILDS = [ { name: 'build:linux', stage: 'build', status: :success }, @@ -148,7 +148,7 @@ end Gitlab::Seeder.quiet do Project.all.sample(5).each do |project| - project_builds = Gitlab::Seeder::Builds.new(project) + project_builds = Gitlab::Seeder::Pipelines.new(project) project_builds.seed! end end