Skip to content

Commit

Permalink
Merge pull request #1336 from hub4j/dependabot/maven/com.github.tomak…
Browse files Browse the repository at this point in the history
…ehurst-wiremock-jre8-standalone-2.32.0

Chore(deps-dev): Bump wiremock-jre8-standalone from 2.31.0 to 2.32.0
  • Loading branch information
bitwiseman committed Dec 6, 2021
2 parents 906a6ef + 72bc543 commit 9965f3b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8-standalone</artifactId>
<version>2.31.0</version>
<version>2.32.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 4 additions & 0 deletions src/test/java/org/kohsuke/github/junit/WireMockRule.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,10 @@ public GetServeEventsResult getServeEvents() {
return wireMockServer.getServeEvents();
}

public GetServeEventsResult getServeEvents(ServeEventQuery serveEventQuery) {
return wireMockServer.getServeEvents(serveEventQuery);
}

public SingleServedStubResult getServedStub(UUID id) {
return wireMockServer.getServedStub(id);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,17 @@ public boolean getStubRequestLoggingDisabled() {
public boolean getStubCorsEnabled() {
return parent.getStubCorsEnabled();
}

public long timeout() {
return parent.timeout();
}

public boolean getDisableOptimizeXmlFactoriesLoading() {
return parent.getDisableOptimizeXmlFactoriesLoading();
}

public boolean getDisableStrictHttpHeaders() {
return parent.getDisableStrictHttpHeaders();
}

}

0 comments on commit 9965f3b

Please sign in to comment.