From e6639a4c84fc48151338de9014eac9eb785e36cf Mon Sep 17 00:00:00 2001 From: Victor Pellan Date: Mon, 2 Dec 2024 14:43:12 +0100 Subject: [PATCH] switch tests values for apm enabled --- spec/datadog/tracing/configuration/settings_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/datadog/tracing/configuration/settings_spec.rb b/spec/datadog/tracing/configuration/settings_spec.rb index a2d9ca31ec..3974a1eddd 100644 --- a/spec/datadog/tracing/configuration/settings_spec.rb +++ b/spec/datadog/tracing/configuration/settings_spec.rb @@ -373,13 +373,13 @@ def propagation_style_inject context 'is set to true' do let(:appsec_standalone_enabled) { 'true' } - it { is_expected.to be true } + it { is_expected.to be false } end context 'is set to false' do let(:appsec_standalone_enabled) { 'false' } - it { is_expected.to be false } + it { is_expected.to be true } end end end