Skip to content

Commit

Permalink
test(proper): ensure overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
qzhuyan committed Dec 11, 2024
1 parent aa3f82c commit 58584ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/quicer_prop_gen.erl
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ valid_quicer_settings() ->
quicer_setting_val_is_power_2(stream_recv_window_bidi_local_default, Opts) andalso
quicer_setting_val_is_power_2(stream_recv_window_bidi_remote_default, Opts) andalso
quicer_setting_val_is_power_2(stream_recv_window_unidi_default, Opts) andalso
(proplists:get_value(maximum_mtu, Opts, 1500) >
proplists:get_value(minimum_mtu, Opts, 1248))
(proplists:get_value(maximum_mtu, lists:reverse(Opts), 1500) >
proplists:get_value(minimum_mtu, lists:reverse(Opts), 1248))
).

-spec ensure_dummy_listener(non_neg_integer()) -> _.
Expand Down

0 comments on commit 58584ef

Please sign in to comment.