test(quic): fix flaky
This commit is contained in:
parent
42fa1289a1
commit
f7a2359329
|
@ -674,7 +674,16 @@ t_multi_streams_packet_malform(Config) ->
|
||||||
|
|
||||||
?assert(is_list(emqtt:info(C))),
|
?assert(is_list(emqtt:info(C))),
|
||||||
|
|
||||||
{error, stm_send_error, aborted} = quicer:send(MalformStream, <<1, 2, 3, 4, 5, 6, 7, 8, 9, 0>>),
|
{error, stm_send_error, _} =
|
||||||
|
snabbkaffe:retry(
|
||||||
|
10000,
|
||||||
|
10,
|
||||||
|
fun() ->
|
||||||
|
{error, stm_send_error, _} = quicer:send(
|
||||||
|
MalformStream, <<1, 2, 3, 4, 5, 6, 7, 8, 9, 0>>
|
||||||
|
)
|
||||||
|
end
|
||||||
|
),
|
||||||
|
|
||||||
?assert(is_list(emqtt:info(C))),
|
?assert(is_list(emqtt:info(C))),
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue