Skip to content

Commit 0eab488

Browse files
committed
Fix missing callsites in tests
1 parent c3c7f26 commit 0eab488

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dd-java-agent/instrumentation/kotlin-coroutines-1.3/src/testFixtures/kotlin/datadog/trace/instrumentation/kotlin/coroutines/CoreKotlinCoroutineTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ abstract class CoreKotlinCoroutineTests(private val dispatcher: CoroutineDispatc
364364
activeSpan().setSpanName(opName)
365365
}
366366

367-
protected fun childSpan(opName: String): AgentSpan = get().buildSpan(opName)
367+
protected fun childSpan(opName: String): AgentSpan = get().buildSpan("kotlin_coroutine", opName)
368368
.withResourceName("coroutines-test-span")
369369
.start()
370370

dd-java-agent/instrumentation/zio/zio-2.0/src/test/scala/ZioTestFixtures.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ object ZioTestFixtures {
121121
ddSpan <- ZIO.succeed(
122122
AgentTracer
123123
.get()
124-
.buildSpan(opName)
124+
.buildSpan("zio.experimental", opName)
125125
.withResourceName("zio-test")
126126
.start()
127127
)

0 commit comments

Comments
 (0)