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>2021-09-01 12:10:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-01 12:10:58 +0300
commit0356944a052f481f63a4d6f18510e7f42516cc44 (patch)
tree74620c1ca92198cf9d6ed2bc8e22182d0460c8b2 /spec/controllers/projects
parentdbc554cda7f86f22d34fd1e3a4ec4ab677d55879 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/controllers/projects')
-rw-r--r--spec/controllers/projects/learn_gitlab_controller_spec.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/controllers/projects/learn_gitlab_controller_spec.rb b/spec/controllers/projects/learn_gitlab_controller_spec.rb
index f633f7aa246..90d00767f92 100644
--- a/spec/controllers/projects/learn_gitlab_controller_spec.rb
+++ b/spec/controllers/projects/learn_gitlab_controller_spec.rb
@@ -27,13 +27,6 @@ RSpec.describe Projects::LearnGitlabController do
it { is_expected.to render_template(:index) }
- it 'pushes experiment to frontend' do
- expect(controller).to receive(:push_frontend_experiment).with(:learn_gitlab_a, subject: user)
- expect(controller).to receive(:push_frontend_experiment).with(:learn_gitlab_b, subject: user)
-
- subject
- end
-
context 'learn_gitlab experiment not enabled' do
let(:learn_gitlab_experiment_enabled) { false }