Bumped WireMock to 2.23.2 jre8

fixes gh-943
This commit is contained in:
Marcin Grzejszczak
2019-04-16 10:25:36 +04:00
parent 42a2d1dfb1
commit d82afd5a24
7 changed files with 8 additions and 8 deletions

View File

@@ -40,7 +40,7 @@
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-standalone</artifactId>
<artifactId>wiremock-jre8-standalone</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@@ -1008,7 +1008,7 @@ class DslToWireMockClientConverterSpec extends Specification {
.header("Content-Type", "application/json")
.body('''{"email":"abc@abc.com", "callback_url":"https://partners.com"}''')
, String)
response.headers.get('Content-Type') == ['application/json;charset=UTF-8']
response.headers.get('Content-Type') == ['application/json;charset=utf-8']
response.statusCodeValue == 400
JSONAssert.assertEquals('''{"message":"[8.2 Profile/3.7 Bad Request]"}"''', response.body, false)
}