Skip to content

Commit

Permalink
fix test in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jarnaiz committed Oct 24, 2015
1 parent 0faae78 commit 19123b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/upplication/s3fs/FileSystemProviderIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ private Map<String, String> buildFakeEnv(){
private Properties buildFakeProps() {
try {
Properties props = new Properties();
props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("amazon-test.properties"));
props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("amazon-test-sample.properties"));
return props;
}
catch (IOException e){
throw new RuntimeException("amazon-test.properties not present");
throw new RuntimeException("amazon-test-sample.properties not present");
}
}
}

0 comments on commit 19123b1

Please sign in to comment.