Skip to content

Commit

Permalink
fix missing 'failOnNoStubs' property configuration (#1928)
Browse files Browse the repository at this point in the history
  • Loading branch information
maverick1601 authored Aug 9, 2023
1 parent d8f95c6 commit 8d7200a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private StubRunnerOptionsBuilder builder(StubRunnerProperties props) {
.withDeleteStubsAfterTest(Boolean.parseBoolean(resolvePlaceholder(props.isDeleteStubsAfterTest())))
.withGenerateStubs(Boolean.parseBoolean(resolvePlaceholder(props.isGenerateStubs())))
.withProperties(props.getProperties()).withHttpServerStubConfigurer(props.getHttpServerStubConfigurer())
.withServerId(resolvePlaceholder(props.getServerId()));
.withServerId(resolvePlaceholder(props.getServerId())).withFailOnNoStubs(props.isFailOnNoStubs());
}

private String[] resolvePlaceholder(String[] string) {
Expand Down

0 comments on commit 8d7200a

Please sign in to comment.