Skip to content

Commit

Permalink
Add an example of usage without Companion.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-winkelman committed Dec 11, 2023
1 parent a356831 commit 00117df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/testcontainers-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<wiremock.testcontainers.version>1.0-alpha-13</wiremock.testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
<extension.version>0.7.0</extension.version>
<extension.version>0.8.0</extension.version>
<wiremock.version>3.3.1</wiremock.version>
<junit.version>5.10.1</junit.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion examples/testcontainers-java/src/test/java/TestSample.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testGraphql() throws IOException, InterruptedException {
WireMock.post(WireMock.urlEqualTo("/graphql"))
.andMatching(
GraphqlBodyMatcher.extensionName,
GraphqlBodyMatcher.Companion.withRequest(
GraphqlBodyMatcher.withRequest(
"{ \"query\": \"{ query { name id }}\" }"
)
)
Expand Down

0 comments on commit 00117df

Please sign in to comment.