From 7c1fd15f86572f0b7a3dee861db539616d82f935 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 27 Jun 2015 23:24:15 +0300 Subject: [PATCH] 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 --- tests/hwsim/test_hapd_ctrl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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",