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-06-02 21:09:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-02 21:09:18 +0300
commit9b40f0e0d63ff2a8ed1686f8713701688600a998 (patch)
tree87c74686842c1f6d48f003cdf14aa7727fe73cc7 /spec/controllers/registrations
parent5cdfcd55c56200ff81adb73f1c7892ca4d723726 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/controllers/registrations')
-rw-r--r--spec/controllers/registrations/welcome_controller_spec.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/spec/controllers/registrations/welcome_controller_spec.rb b/spec/controllers/registrations/welcome_controller_spec.rb
index 8a5a8490a23..c444875bf74 100644
--- a/spec/controllers/registrations/welcome_controller_spec.rb
+++ b/spec/controllers/registrations/welcome_controller_spec.rb
@@ -31,7 +31,6 @@ RSpec.describe Registrations::WelcomeController do
context 'when role and setup_for_company is set' do
before do
- stub_feature_flags(about_your_company_registration_flow: false)
user.update!(setup_for_company: false)
sign_in(user)
end
@@ -61,10 +60,6 @@ RSpec.describe Registrations::WelcomeController do
end
describe '#update' do
- before do
- stub_feature_flags(about_your_company_registration_flow: false)
- end
-
subject(:update) do
patch :update, params: { user: { role: 'software_developer', setup_for_company: 'false' } }
end