You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: provider/pact-jvm-provider-junit5/src/main/kotlin/au/com/dius/pact/provider/junit5/PactJUnit5VerificationProvider.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -392,11 +392,11 @@ open class PactVerificationInvocationContextProvider : TestTemplateInvocationCon
392
392
logger.debug { "Verifying pacts for provider '$serviceName' and consumer '$consumerName'" }
393
393
394
394
val pactSources = findPactSources(context).flatMap {
395
-
description +="\nSource: ${it.description()}"
396
395
val valueResolver = getValueResolver(context)
397
396
if (valueResolver !=null) {
398
397
it.setValueResolver(valueResolver)
399
398
}
399
+
description +="\nSource: ${it.description()}"
400
400
val pacts = it.load(serviceName)
401
401
filterPactsByAnnotations(pacts, context.requiredTestClass).map { pact -> pact to it.pactSource }
402
402
}.filter { p -> consumerName ==null|| p.first.consumer.name == consumerName }
0 commit comments