summaryrefslogtreecommitdiff
path: root/db/fixtures/development/14_builds.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/fixtures/development/14_builds.rb')
-rw-r--r--db/fixtures/development/14_builds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/fixtures/development/14_builds.rb b/db/fixtures/development/14_builds.rb
index b99d24a03c9..51ff451eb4c 100644
--- a/db/fixtures/development/14_builds.rb
+++ b/db/fixtures/development/14_builds.rb
@@ -19,7 +19,7 @@ class Gitlab::Seeder::Builds
commits = @project.repository.commits('master', nil, 5)
commits_sha = commits.map { |commit| commit.raw.id }
commits_sha.map do |sha|
- @project.ensure_ci_commit(sha, 'master')
+ @project.ensure_pipeline(sha, 'master')
end
rescue
[]