Fixed accidental commit

This commit is contained in:
Marcin Grzejszczak
2018-04-11 16:03:49 +02:00
parent 1be323d029
commit 73d6032255
2 changed files with 2 additions and 7 deletions

View File

@@ -66,11 +66,6 @@
<artifactId>spring-boot-starter-web</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>

View File

@@ -125,10 +125,10 @@ class DslToWireMockClientConverterSpec extends Specification {
wireMockRule.addStubMapping(mapping)
and:
MultiValueMap<String, Object> parameters = new LinkedMultiValueMap<String, Object>()
parameters.add("test", new ByteArrayResource([100, 117, 100, 97] as byte[]) {
parameters.add("file", new ByteArrayResource([100, 117, 100, 97] as byte[]) {
@Override
String getFilename(){
return "test"
return "file"
}
})
org.springframework.http.HttpHeaders headers = new org.springframework.http.HttpHeaders()