Skip to content

Commit da187e0

Browse files
committed
fix(kotlin-coroutines): Fix non unique test names
1 parent d37998c commit da187e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dd-java-agent/instrumentation/kotlin-coroutines-1.3/src/testFixtures/groovy/datadog/trace/instrumentation/kotlin/coroutines/AbstractKotlinCoroutineInstrumentationTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ abstract class AbstractKotlinCoroutineInstrumentationTest<T extends CoreKotlinCo
358358
[dispatcherName, dispatcher] << dispatchersToTest
359359
}
360360

361-
def "kotlin trace consistent with timeout"() {
361+
def "kotlin trace consistent with timeout #dispatcherName"() {
362362
setup:
363363
CoreKotlinCoroutineTests kotlinTest = getCoreKotlinCoroutineTestsInstance(dispatcher)
364364
int expectedNumberOfSpans = kotlinTest.traceAfterTimeout()
@@ -397,7 +397,7 @@ abstract class AbstractKotlinCoroutineInstrumentationTest<T extends CoreKotlinCo
397397
[dispatcherName, dispatcher] << dispatchersToTest
398398
}
399399

400-
def "kotlin trace consistent after delay"() {
400+
def "kotlin trace consistent after delay #dispatcherName"() {
401401
setup:
402402
CoreKotlinCoroutineTests kotlinTest = getCoreKotlinCoroutineTestsInstance(dispatcher)
403403
int expectedNumberOfSpans = kotlinTest.traceAfterDelay()

0 commit comments

Comments
 (0)