Skip to content

Commit

Permalink
fix(V4): Http mock server was incorrectly setting the trasnport to https
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Aug 27, 2024
1 parent 20618d9 commit 87f8578
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ open class MockHttpServer(pact: BasePact, config: MockProviderConfig) :
when (val p = pact.asV4Pact()) {
is Result.Ok -> {
for (interaction in p.value.interactions) {
interaction.asV4Interaction().transport = "https"
interaction.asV4Interaction().transport = "http"
}
p.value
}
Expand Down

0 comments on commit 87f8578

Please sign in to comment.