From 75ed87b4fbdb10cc048c68ed52ec8385bbf4a8bb Mon Sep 17 00:00:00 2001 From: Bruce Bujon Date: Fri, 13 Mar 2026 14:32:36 +0100 Subject: [PATCH] fix(resilience4j): Fix unstable test name --- .../resilience4j-2.0/src/test/groovy/FallbackTest.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dd-java-agent/instrumentation/resilience4j/resilience4j-2.0/src/test/groovy/FallbackTest.groovy b/dd-java-agent/instrumentation/resilience4j/resilience4j-2.0/src/test/groovy/FallbackTest.groovy index ca8a25c5cc8..12cbecbdc78 100644 --- a/dd-java-agent/instrumentation/resilience4j/resilience4j-2.0/src/test/groovy/FallbackTest.groovy +++ b/dd-java-agent/instrumentation/resilience4j/resilience4j-2.0/src/test/groovy/FallbackTest.groovy @@ -21,7 +21,7 @@ import static datadog.trace.agent.test.utils.TraceUtils.runUnderTrace class FallbackTest extends InstrumentationSpecification { static singleThreadExecutor = Executors.newSingleThreadExecutor() - def "ofSupplier"(DecorateSupplier decorateSupplier) { + def "ofSupplier #iterationIndex"(DecorateSupplier decorateSupplier) { setup: def supplier = decorateSupplier.decorate() @@ -55,7 +55,7 @@ class FallbackTest extends InstrumentationSpecification { ] } - def "ofCheckedSupplier"(DecorateCheckedSupplier decorateCheckedSupplier) { + def "ofCheckedSupplier #iterationIndex"(DecorateCheckedSupplier decorateCheckedSupplier) { setup: CheckedSupplier supplier = decorateCheckedSupplier.decorate() @@ -89,7 +89,7 @@ class FallbackTest extends InstrumentationSpecification { ] } - def "ofCallable"(DecorateCallable decorateCallable) { + def "ofCallable #iterationIndex"(DecorateCallable decorateCallable) { setup: def callable = decorateCallable.decorate() @@ -123,7 +123,7 @@ class FallbackTest extends InstrumentationSpecification { ] } - def "ofCompletionStage"(Supplier> supplier) { + def "ofCompletionStage #iterationIndex"(Supplier> supplier) { when: def future = runUnderTrace("parent") { supplier.get().toCompletableFuture() }