Skip to content

Commit

Permalink
Cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
normanmaurer committed Dec 11, 2023
1 parent 6a26bd5 commit 1f7a16d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public EmbeddedChannel client() {

@Override
public EmbeddedChannel server() {
return createServerChannel(version, serverKeys);
return createServerChannel(serverKeys);
}
};
}
Expand All @@ -139,7 +139,7 @@ private static EmbeddedChannel createClientChannel(OHttpVersion version, OHttpCi
new LoggingHandler("CLIENT-INNER"));
}

private static EmbeddedChannel createServerChannel(OHttpVersion version, OHttpServerKeys keys) {
private static EmbeddedChannel createServerChannel(OHttpServerKeys keys) {
return new EmbeddedChannel(
new LoggingHandler("SERVER-RAW"),
new HttpServerCodec(),
Expand Down

0 comments on commit 1f7a16d

Please sign in to comment.