Skip to content

Commit

Permalink
fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ldetmer committed Sep 23, 2024
1 parent c92322b commit ae0f281
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
import java.util.concurrent.Executor;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import org.junit.*;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;

Expand Down Expand Up @@ -1113,7 +1112,6 @@ void testCreateClient_throwsErrorIfApiKeyAndCredentialsAreProvided() throws Exce
Mockito.when(credentialsProvider.getCredentials()).thenReturn(Mockito.mock(Credentials.class));
builder.setCredentialsProvider(credentialsProvider);

Assert.assertThrows(
IllegalArgumentException.class, () -> ClientContext.create(builder.build()));
assertThrows(IllegalArgumentException.class, () -> ClientContext.create(builder.build()));
}
}

0 comments on commit ae0f281

Please sign in to comment.