Skip to content

Commit 4215789

Browse files
committedMar 16, 2020
fix: @PactBroker not reading Spring properties with JUnit 5 #1023
1 parent 6fd8adb commit 4215789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎provider/pact-jvm-provider-junit5/src/main/kotlin/au/com/dius/pact/provider/junit5/PactJUnit5VerificationProvider.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,11 +392,11 @@ open class PactVerificationInvocationContextProvider : TestTemplateInvocationCon
392392
logger.debug { "Verifying pacts for provider '$serviceName' and consumer '$consumerName'" }
393393

394394
val pactSources = findPactSources(context).flatMap {
395-
description += "\nSource: ${it.description()}"
396395
val valueResolver = getValueResolver(context)
397396
if (valueResolver != null) {
398397
it.setValueResolver(valueResolver)
399398
}
399+
description += "\nSource: ${it.description()}"
400400
val pacts = it.load(serviceName)
401401
filterPactsByAnnotations(pacts, context.requiredTestClass).map { pact -> pact to it.pactSource }
402402
}.filter { p -> consumerName == null || p.first.consumer.name == consumerName }

0 commit comments

Comments
 (0)
Please sign in to comment.