summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/14_pipelines.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/fixtures/development/14_pipelines.rb b/db/fixtures/development/14_pipelines.rb
index 9a3d54fb56c..36b0d16bfb9 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