Skip to content

Commit

Permalink
Issue carlspring#60: Reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mslowiak committed Jan 28, 2021
1 parent 99c1be3 commit f208b41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
public abstract class BaseIntegrationTest
{

static {
static
{
if (isMinioEnv())
{
final String accessKey = (String) EnvironmentBuilder.getRealEnv().get(ACCESS_KEY);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ public MinioContainer(String accessKey,
withEnv(MINIO_ACCESS_KEY, accessKey);
withEnv(MINIO_SECRET_KEY, secretKey);
withCommand("server", DEFAULT_STORAGE_DIRECTORY);
setWaitStrategy(new HttpWaitStrategy()
.forPort(DEFAULT_PORT)
.forPath(HEALTH_ENDPOINT)
.withStartupTimeout(Duration.ofMinutes(2)));
setWaitStrategy(new HttpWaitStrategy().forPort(DEFAULT_PORT)
.forPath(HEALTH_ENDPOINT)
.withStartupTimeout(Duration.ofMinutes(2)));
}

}
Expand Down

0 comments on commit f208b41

Please sign in to comment.