Skip to content

Commit f62354b

Browse files
committed
- fixes spot bugs issues
1 parent 7aa9865 commit f62354b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
public class CoreHttpCallbackFutureWrapperTests {
1818

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

2525
@Test
26-
public void CancelsCall() {
26+
public 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+
public 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)