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>2021-01-26 03:08:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-01-26 03:08:57 +0300
commit76215aab04e91e904cafdd35a0649205b9245e82 (patch)
treeec6243fc4a5de352727caf4d890f53a276151643 /spec/serializers
parentfba5aaeec6f0e95818092f7b27b1529df1c13b63 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/ci/pipeline_entity_spec.rb (renamed from spec/serializers/pipeline_entity_spec.rb)2
-rw-r--r--spec/serializers/pipeline_details_entity_spec.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/serializers/pipeline_entity_spec.rb b/spec/serializers/ci/pipeline_entity_spec.rb
index 61dbcaae77d..6ce3cef5f44 100644
--- a/spec/serializers/pipeline_entity_spec.rb
+++ b/spec/serializers/ci/pipeline_entity_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe PipelineEntity do
+RSpec.describe Ci::PipelineEntity do
include Gitlab::Routing
let_it_be(:project) { create(:project) }
diff --git a/spec/serializers/pipeline_details_entity_spec.rb b/spec/serializers/pipeline_details_entity_spec.rb
index 74e91cc9cdd..2f54f45866b 100644
--- a/spec/serializers/pipeline_details_entity_spec.rb
+++ b/spec/serializers/pipeline_details_entity_spec.rb
@@ -10,8 +10,8 @@ RSpec.describe PipelineDetailsEntity do
described_class.represent(pipeline, request: request)
end
- it 'inherrits from PipelineEntity' do
- expect(described_class).to be < PipelineEntity
+ it 'inherits from PipelineEntity' do
+ expect(described_class).to be < Ci::PipelineEntity
end
before do