Skip to content

Commit f2ab5ba

Browse files
committed
Update SessionCloseTest.java
1 parent fa4e55c commit f2ab5ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

avaje-jex-http3-flupke/src/test/java/io/avaje/jex/http3/flupke/webtransport/SessionCloseTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void testClientInitiatedSessionCloseHandling() throws Exception {
2929
.webTransport(
3030
"/close",
3131
b ->
32-
b.onOpen(_ -> openLatch.countDown())
32+
b.onOpen(__ -> openLatch.countDown())
3333
.onClose(
3434
ctx -> {
3535
closeCode.set(ctx.code());
@@ -86,7 +86,7 @@ void testServerInitiatedSessionClose() throws Exception {
8686

8787
var session = clientSessionFactory.createSession(localhost.resolve("/server-close"));
8888
session.registerSessionTerminatedEventListener(
89-
(code, _) -> {
89+
(code, __) -> {
9090
clientCloseCode.set(code);
9191
clientCloseLatch.countDown();
9292
});

0 commit comments

Comments
 (0)