We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51a4a9d commit 1463cd9Copy full SHA for 1463cd9
internal-api/src/test/groovy/datadog/trace/api/ConfigTest.groovy
@@ -2613,7 +2613,7 @@ class ConfigTest extends DDSpecification {
2613
def "ssi inject force"() {
2614
when:
2615
def prop = new Properties()
2616
- prop.setProperty(SSI_INJECTION_FORCE, true)
+ prop.setProperty(SSI_INJECTION_FORCE, "true")
2617
Config config = Config.get(prop)
2618
2619
then:
@@ -2624,6 +2624,7 @@ class ConfigTest extends DDSpecification {
2624
2625
2626
prop.setProperty(INSTRUMENTATION_SOURCE, "ssi")
2627
+ Config config = Config.get(prop)
2628
2629
2630
config.instrumentationSource == "ssi"
0 commit comments