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/requests/api/unleash_spec.rb')
-rw-r--r--spec/requests/api/unleash_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/requests/api/unleash_spec.rb b/spec/requests/api/unleash_spec.rb
index 51c567309b7..4d382f91023 100644
--- a/spec/requests/api/unleash_spec.rb
+++ b/spec/requests/api/unleash_spec.rb
@@ -202,18 +202,6 @@ RSpec.describe API::Unleash do
3.times { get api(features_url), params: params, headers: headers }
end
-
- context 'when cache_unleash_client_api is disabled' do
- before do
- stub_feature_flags(cache_unleash_client_api: false)
- end
-
- it 'serializes feature flags every time' do
- expect(::API::Entities::UnleashFeature).to receive(:represent).exactly(5).times
-
- 5.times { get api(features_url), params: params, headers: headers }
- end
- end
end
context 'with version 2 feature flags' do