From de83176b04be9324f5c44d2474bbb2c333a87c51 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 4 Jun 2021 15:33:55 -0500 Subject: [PATCH] auto-t: Drop RSSI even lower The VHT AP reports NSS:8, so it is still highly preferred even in very low signal situations. --- autotests/testHT-VHT/connection_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autotests/testHT-VHT/connection_test.py b/autotests/testHT-VHT/connection_test.py index 09b98d95..3ae2942c 100644 --- a/autotests/testHT-VHT/connection_test.py +++ b/autotests/testHT-VHT/connection_test.py @@ -83,12 +83,12 @@ class Test(unittest.TestCase): self.do_connect(wd, device, vht_hostapd) # lower VHT BSS signal, HT should now be preferred - rule0.signal = -7900 + rule0.signal = -8200 self.do_connect(wd, device, ht_hostapd) # lower HT BSS signal, basic rate BSS should now be preferred - rule1.signal = -7400 + rule1.signal = -7600 self.do_connect(wd, device, non_ht_hostapd)