Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arempter committed Jan 31, 2019
1 parent f9c2cba commit 024ba6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void s3ClientConfEmptyAccessKey() throws Exception {

@Test(expected = Exception.class)
public void s3ClientConfEmptySecretKey() throws Exception {
configs.remove("secretkey");
configs.remove("password");
assertThat(new S3Client(configs));
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/ing/ranger/s3/client/TestsSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public void setUp() {
configs = new HashMap<String, String>();
configs.put("endpoint", "http://127.0.0.1:8010");
configs.put("accesskey", "accesskey");
configs.put("secretkey", "secretkey");
configs.put("password", "PBEWithMD5AndDES,tzL1AKl5uc4NKYaoQ4P3WLGIBFPXWPWdu1fRm9004jtQiV,f77aLYLo,1000,6IxJOOpoFsJXyLNjNf/M9Q==");
}
}

0 comments on commit 024ba6b

Please sign in to comment.