Skip to content

Commit 77201ec

Browse files
Update wiremock-standalone.jar to version 2.35.0 from 2.6.0 (#48)
* Update wiremock-standalone.jar to version 2.35.0 from 2.6.0 * Changed quickstart documentation custom wiremock file version --------- Co-authored-by: Kjeld Schmidt <[email protected]>
1 parent c679131 commit 77201ec

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Customizing the path to java:
2828

2929
Customizing the WireMock server JAR file:
3030

31-
WireMockServer(jar_path='/my/secret/location/wiremock-standalone-2.0.0.jar')
31+
WireMockServer(jar_path='/my/secret/location/wiremock-standalone-2.35.0.jar')
3232

3333

tests/test_server/test_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_init_with_defaults(config):
5454
with patch.object(WireMockServer, "_get_free_port", return_value=config.port):
5555
wm = WireMockServer()
5656

57-
expected_jar = files("wiremock") / "server" / "wiremock-standalone-2.6.0.jar"
57+
expected_jar = files("wiremock") / "server" / "wiremock-standalone-2.35.0.jar"
5858
assertEqual(wm.java_path, "java") # Assume java in PATH
5959
assertEqual(wm.jar_path, expected_jar)
6060

wiremock/server/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class WireMockServer(object):
1818

1919
DEFAULT_JAVA = "java" # Assume java in PATH
20-
DEFAULT_JAR = files("wiremock") / "server" / "wiremock-standalone-2.6.0.jar"
20+
DEFAULT_JAR = files("wiremock") / "server" / "wiremock-standalone-2.35.0.jar"
2121

2222
def __init__(
2323
self,
15 MB
Binary file not shown.
-10.5 MB
Binary file not shown.

0 commit comments

Comments
 (0)