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>2023-07-05 12:07:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-05 12:07:09 +0300
commit26d28ba1597a9ce3018206475fa3dfdb42829656 (patch)
tree81349a0dc45d0f5a752673361c44902f869b4663 /spec/controllers/application_controller_spec.rb
parentafcff137096463cd55bf4776c83a76d648b03dc5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/controllers/application_controller_spec.rb')
-rw-r--r--spec/controllers/application_controller_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb
index 58125f3a831..0beaae7a2d7 100644
--- a/spec/controllers/application_controller_spec.rb
+++ b/spec/controllers/application_controller_spec.rb
@@ -567,20 +567,6 @@ RSpec.describe ApplicationController, feature_category: :shared do
expect(controller.last_payload[:response_bytes]).to eq('authenticated'.bytesize)
end
-
- context 'with log_response_length disabled' do
- before do
- stub_feature_flags(log_response_length: false)
- end
-
- it 'logs response length' do
- sign_in user
-
- get :index
-
- expect(controller.last_payload).not_to include(:response_bytes)
- end
- end
end
describe '#access_denied' do