Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-03 00:08:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-03 00:08:00 +0300
commit2164573e4531de7949b0ad9fe1d55bfb9c42765d (patch)
tree10cf954a1225eb3162009f5c2457bacdc388aa63 /spec/factories
parentf3e7bc80608c100227030030a6a601897f8e4ff9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/ci/build_report_results.rb4
-rw-r--r--spec/factories/releases/link.rb1
2 files changed, 3 insertions, 2 deletions
diff --git a/spec/factories/ci/build_report_results.rb b/spec/factories/ci/build_report_results.rb
index 00009ead126..0685c0e5554 100644
--- a/spec/factories/ci/build_report_results.rb
+++ b/spec/factories/ci/build_report_results.rb
@@ -6,7 +6,7 @@ FactoryBot.define do
project factory: :project
data do
{
- junit: {
+ tests: {
name: "rspec",
duration: 0.42,
failed: 0,
@@ -20,7 +20,7 @@ FactoryBot.define do
trait :with_junit_success do
data do
{
- junit: {
+ tests: {
name: "rspec",
duration: 0.42,
failed: 0,
diff --git a/spec/factories/releases/link.rb b/spec/factories/releases/link.rb
index 001deeb71a0..da0efe4a749 100644
--- a/spec/factories/releases/link.rb
+++ b/spec/factories/releases/link.rb
@@ -6,5 +6,6 @@ FactoryBot.define do
sequence(:name) { |n| "release-18.#{n}.dmg" }
sequence(:url) { |n| "https://example.com/scrambled-url/app-#{n}.zip" }
sequence(:filepath) { |n| "/binaries/awesome-app-#{n}" }
+ link_type { 'other' }
end
end