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>2022-05-24 21:09:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-24 21:09:18 +0300
commit8015f09545c35b833f4955fc2e0b8f1a3214cbcb (patch)
treee28c5add700b9f3d12eabe1361889545785b29d4 /spec/spec_helper.rb
parent8e1bb8745bafe36f273ce4a095c3576c38ceb8b4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index a8b5908c57e..6c9a11587d3 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -256,16 +256,6 @@ RSpec.configure do |config|
end
config.around do |example|
- if example.metadata.fetch(:stub_feature_flags, true)
- # It doesn't make sense for this to default to enabled as we only plan to
- # use this temporarily to override an environment variable but eventually
- # we'll just use the environment variable value when we've completed the
- # gradual rollout. This stub must happen in around block as there are other
- # around blocks in tests that will run before this and get the wrong
- # database connection.
- stub_feature_flags(force_no_sharing_primary_model: false)
- end
-
example.run
end