Skip to content

Commit 1463cd9

Browse files
committed
fix broken test
1 parent 51a4a9d commit 1463cd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal-api/src/test/groovy/datadog/trace/api/ConfigTest.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2613,7 +2613,7 @@ class ConfigTest extends DDSpecification {
26132613
def "ssi inject force"() {
26142614
when:
26152615
def prop = new Properties()
2616-
prop.setProperty(SSI_INJECTION_FORCE, true)
2616+
prop.setProperty(SSI_INJECTION_FORCE, "true")
26172617
Config config = Config.get(prop)
26182618
26192619
then:
@@ -2624,6 +2624,7 @@ class ConfigTest extends DDSpecification {
26242624
when:
26252625
def prop = new Properties()
26262626
prop.setProperty(INSTRUMENTATION_SOURCE, "ssi")
2627+
Config config = Config.get(prop)
26272628
26282629
then:
26292630
config.instrumentationSource == "ssi"

0 commit comments

Comments
 (0)