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/services/issues/move_service_spec.rb')
-rw-r--r--spec/services/issues/move_service_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/services/issues/move_service_spec.rb b/spec/services/issues/move_service_spec.rb
index 35a380e01d0..56a3c22cd7f 100644
--- a/spec/services/issues/move_service_spec.rb
+++ b/spec/services/issues/move_service_spec.rb
@@ -194,20 +194,6 @@ RSpec.describe Issues::MoveService do
expect(new_issue.customer_relations_contacts).to be_empty
end
end
-
- context 'when customer_relations feature is disabled' do
- let(:another_project) { create(:project, namespace: create(:group)) }
-
- before do
- stub_feature_flags(customer_relations: false)
- end
-
- it 'does not preserve contacts' do
- new_issue = move_service.execute(old_issue, new_project)
-
- expect(new_issue.customer_relations_contacts).to be_empty
- end
- end
end
context 'moving to same project' do