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 22, 2024
1 parent 9ddf126 commit f19f1cf
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 f19f1cf

Please sign in to comment.