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:
Diffstat (limited to 'spec/serializers/project_import_entity_spec.rb')
-rw-r--r--spec/serializers/project_import_entity_spec.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/serializers/project_import_entity_spec.rb b/spec/serializers/project_import_entity_spec.rb
index 521d0127dbb..a2f895219be 100644
--- a/spec/serializers/project_import_entity_spec.rb
+++ b/spec/serializers/project_import_entity_spec.rb
@@ -39,16 +39,6 @@ RSpec.describe ProjectImportEntity, feature_category: :importers do
it 'includes relation_type' do
expect(subject[:relation_type]).to eq('owned')
end
-
- context 'with remove_legacy_github_client FF is disabled' do
- before do
- stub_feature_flags(remove_legacy_github_client: false)
- end
-
- it "doesn't include relation_type" do
- expect(subject[:relation_type]).to eq(nil)
- end
- end
end
context 'when import is failed' do