Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvergnaud committed Jun 8, 2020
1 parent 0cf6b8e commit 4a1d7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/src/test/java/prompto/server/TestConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public final void __before__() throws IOException {

@Test
public void testFullYamlConfig() throws IOException {
try(InputStream input = Thread.currentThread().getContextClassLoader().getResourceAsStream("test-config.yml")) {
try(InputStream input = Thread.currentThread().getContextClassLoader().getResourceAsStream("config/test-config.yml")) {
assertNotNull(input);
IConfigurationReader reader = new YamlConfigurationReader(input);
IHttpConfiguration httpConfig = new HttpConfiguration(reader.getObject("http"));
Expand Down

0 comments on commit 4a1d7ce

Please sign in to comment.