Skip to content

Commit

Permalink
fixes made
Browse files Browse the repository at this point in the history
  • Loading branch information
Thendo20 committed Jul 9, 2024
1 parent e3dafc5 commit 1da9290
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
class BucketAccessServiceImplTest extends BaseMockitoTest {

private static final String ABSOLUTE_BUCKET = "s3://bucket";
private final Uri uri = new Uri(ABSOLUTE_BUCKET);

private UserIDAuth auth = new UserIDAuth(new UserID(""), ReadKeyPasswordTestFactory.getForString(""));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ KeyCreationConfig.EncryptingKeyCreationCfg toEncryptingKeyCreationCfg() {
builder.sigAlgo(sigAlgo);
}


if(null != curve) {
builder.curve(curve);

}

return builder.build();
}
Expand Down Expand Up @@ -231,9 +231,9 @@ KeyCreationConfig.SigningKeyCreationCfg toSigningKeyCreationCfg() {
builder.sigAlgo(sigAlgo);
}


if (null != curve) {
builder.curve(curve);

}

return builder.build();
}
Expand Down

0 comments on commit 1da9290

Please sign in to comment.