Skip to content

Commit 1e29f43

Browse files
committed
- code linting
1 parent f62354b commit 1e29f43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/com/microsoft/graph/http/CoreHttpCallbackFutureWrapperTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
import okhttp3.Call;
1515
import okhttp3.Response;
1616

17-
public class CoreHttpCallbackFutureWrapperTests {
17+
class CoreHttpCallbackFutureWrapperTests {
1818

1919
@Test
20-
public void throwsIfCallIsNull() {
20+
void throwsIfCallIsNull() {
2121
assertThrows(NullPointerException.class, () -> new CoreHttpCallbackFutureWrapper(null));
2222
}
2323
boolean isCanceled = false;
2424

2525
@Test
26-
public void cancelsCall() {
26+
void cancelsCall() {
2727
var call = mock(Call.class);
2828
doAnswer(i -> {
2929
isCanceled = true;
@@ -35,7 +35,7 @@ public void cancelsCall() {
3535
}
3636

3737
@Test
38-
public void returnsResponseWhenCompleted() throws IOException, InterruptedException, ExecutionException {
38+
void returnsResponseWhenCompleted() throws IOException, InterruptedException, ExecutionException {
3939
var call = mock(Call.class);
4040
var response = mock(Response.class);
4141
var wrapper = new CoreHttpCallbackFutureWrapper(call);

0 commit comments

Comments
 (0)