From: Jouni Malinen Date: Sat, 27 Jun 2015 20:24:15 +0000 (+0300) Subject: tests: Use 16 instead of 13 as the cwmin/cwmax invalid case X-Git-Tag: hostap_2_5~505 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c1fd15f86572f0b7a3dee861db539616d82f935;p=thirdparty%2Fhostap.git tests: Use 16 instead of 13 as the cwmin/cwmax invalid case This is needed to allow the parser to accept 15 which is actually a valid value. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_hapd_ctrl.py b/tests/hwsim/test_hapd_ctrl.py index a2d378452..da2c27019 100644 --- a/tests/hwsim/test_hapd_ctrl.py +++ b/tests/hwsim/test_hapd_ctrl.py @@ -393,9 +393,9 @@ def test_hapd_ctrl_set_error_cases(dev, apdev): "local_pwr_constraint -1", "local_pwr_constraint 256", "wmm_ac_bk_cwmin -1", - "wmm_ac_be_cwmin 13", + "wmm_ac_be_cwmin 16", "wmm_ac_vi_cwmax -1", - "wmm_ac_vo_cwmax 13", + "wmm_ac_vo_cwmax 16", "wmm_ac_foo_cwmax 6", "wmm_ac_bk_aifs 0", "wmm_ac_bk_aifs 256",