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-04-23 21:10:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-23 21:10:18 +0300
commitbc62085601fa730985ea84f88a96c39d870c6ea6 (patch)
tree09ab45c32cb111607db05f121ec38b9b8184c64c /spec/lib/gitlab/error_tracking_spec.rb
parent7e1e45d40a2312e20893ccfc6e7e5dfad6cf7b1c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/gitlab/error_tracking_spec.rb')
-rw-r--r--spec/lib/gitlab/error_tracking_spec.rb18
1 files changed, 1 insertions, 17 deletions
diff --git a/spec/lib/gitlab/error_tracking_spec.rb b/spec/lib/gitlab/error_tracking_spec.rb
index 2e67a9f0874..7ad1f52780a 100644
--- a/spec/lib/gitlab/error_tracking_spec.rb
+++ b/spec/lib/gitlab/error_tracking_spec.rb
@@ -217,7 +217,7 @@ RSpec.describe Gitlab::ErrorTracking do
end
end
- shared_examples 'event processors' do
+ context 'event processors' do
subject(:track_exception) { described_class.track_exception(exception, extra) }
before do
@@ -312,20 +312,4 @@ RSpec.describe Gitlab::ErrorTracking do
end
end
end
-
- context 'with sentry_processors_before_send enabled' do
- before do
- stub_feature_flags(sentry_processors_before_send: true)
- end
-
- include_examples 'event processors'
- end
-
- context 'with sentry_processors_before_send disabled' do
- before do
- stub_feature_flags(sentry_processors_before_send: false)
- end
-
- include_examples 'event processors'
- end
end