Remove unused variable warning

This commit is contained in:
David Ansari 2021-07-19 14:36:22 +02:00
parent 4053f729dd
commit 13b03b8530
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ timeout_authenticating(Config) ->
{ok, S} = gen_tcp:connect("localhost", Port, [{active, false}, {mode, binary}]),
C0 = rabbit_stream_core:init(0),
test_peer_properties(gen_tcp, S, C0),
SaslHandshakeFrame = rabbit_stream_core:frame({request, 1, sasl_handshake}),
_Frame = rabbit_stream_core:frame({request, 1, sasl_handshake}),
?assertEqual(closed, wait_for_socket_close(gen_tcp, S, 1)).
timeout_close_sent(Config) ->