Fixed the broken build

This commit is contained in:
Marcin Grzejszczak
2019-10-04 13:47:33 +02:00
parent ebefa5a07d
commit 5609450bf2
2 changed files with 4 additions and 4 deletions

View File

@@ -45,10 +45,10 @@ public class LoanApplicationServiceTests {
@Autowired
private LoanApplicationService service;
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1-SNAPSHOT/mappings/standalone/shouldMarkClientAsFraud.json")
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1/mappings/standalone/shouldMarkClientAsFraud.json")
private Resource markClientAsFraud;
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1-SNAPSHOT/mappings/webapp/shouldMarkClientAsNotFraud.json")
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1/mappings/webapp/shouldMarkClientAsNotFraud.json")
private Resource markClientAsNotFraud;
@Autowired

View File

@@ -42,10 +42,10 @@ import org.springframework.web.client.RestTemplate;
@AutoConfigureWireMock(port = 0)
public class XmlServiceTests {
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1-SNAPSHOT/mappings/should_return_empty_content.json")
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1/mappings/should_return_empty_content.json")
private Resource empty;
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1-SNAPSHOT/mappings/should_return_full_content.json")
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1/mappings/should_return_full_content.json")
private Resource full;
@Autowired