Comment punctuation cleanup
Motivation:
Commit d857b16d76
introduced some comments that had no punctuation.
Modifications:
Add punctuation.
Result:
Comments have punctuation.
This commit is contained in:
parent
bd66dca418
commit
c60d1f3206
@ -247,17 +247,17 @@ public class Http2ConnectionHandlerTest {
|
|||||||
public ChannelFuture answer(InvocationOnMock invocation) throws Throwable {
|
public ChannelFuture answer(InvocationOnMock invocation) throws Throwable {
|
||||||
Object[] args = invocation.getArguments();
|
Object[] args = invocation.getArguments();
|
||||||
ChannelFutureListener listener = (ChannelFutureListener) args[0];
|
ChannelFutureListener listener = (ChannelFutureListener) args[0];
|
||||||
// Simulate that all streams have become inactive by the time the future completes
|
// Simulate that all streams have become inactive by the time the future completes.
|
||||||
when(connection.activeStreams()).thenReturn(Collections.<Http2Stream>emptyList());
|
when(connection.activeStreams()).thenReturn(Collections.<Http2Stream>emptyList());
|
||||||
when(connection.numActiveStreams()).thenReturn(0);
|
when(connection.numActiveStreams()).thenReturn(0);
|
||||||
// Simulate the future being completed
|
// Simulate the future being completed.
|
||||||
listener.operationComplete(future);
|
listener.operationComplete(future);
|
||||||
return future;
|
return future;
|
||||||
}
|
}
|
||||||
}).when(future).addListener(any(GenericFutureListener.class));
|
}).when(future).addListener(any(GenericFutureListener.class));
|
||||||
handler.close(ctx, promise);
|
handler.close(ctx, promise);
|
||||||
handler.closeStream(stream, future);
|
handler.closeStream(stream, future);
|
||||||
// Simulate another stream close call being made after the context should already be closed
|
// Simulate another stream close call being made after the context should already be closed.
|
||||||
handler.closeStream(stream, future);
|
handler.closeStream(stream, future);
|
||||||
verify(ctx, times(1)).close(any(ChannelPromise.class));
|
verify(ctx, times(1)).close(any(ChannelPromise.class));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user