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>2019-10-18 15:06:56 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-18 15:06:56 +0300
commit6cdc0f32fabea92606c8cda040a3d0875914b906 (patch)
tree8ce718efe3ac030c555d0294157107187c88ee75 /spec/serializers/build_details_entity_spec.rb
parent25989ab7ef1a444ed2abd5479f176d58e1d9462a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/serializers/build_details_entity_spec.rb')
-rw-r--r--spec/serializers/build_details_entity_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/serializers/build_details_entity_spec.rb b/spec/serializers/build_details_entity_spec.rb
index 6a84694cee9..91c5fd6bf2c 100644
--- a/spec/serializers/build_details_entity_spec.rb
+++ b/spec/serializers/build_details_entity_spec.rb
@@ -139,7 +139,8 @@ describe BuildDetailsEntity do
it { is_expected.to include(failure_reason: 'missing_dependency_failure') }
it 'includes the failing dependencies in the callout message' do
- expect(message).to include('test2, test1')
+ expect(message).to include('test1')
+ expect(message).to include('test2')
end
end