From 7daa9b9ad405916ce58d298db8c33882c70f2785 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 29 Dec 2013 12:36:01 +0200 Subject: [PATCH] tests: Use a single channel scan to avoid unnecessary wait Signed-hostap: Jouni Malinen --- tests/hwsim/test_ap_ciphers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/test_ap_ciphers.py b/tests/hwsim/test_ap_ciphers.py index 989fe1ff4..c6c42dd57 100644 --- a/tests/hwsim/test_ap_ciphers.py +++ b/tests/hwsim/test_ap_ciphers.py @@ -24,7 +24,7 @@ def check_cipher(dev, ap, cipher): "rsn_pairwise": cipher } hostapd.add_ap(ap['ifname'], params) dev.connect("test-wpa2-psk", psk="12345678", - pairwise=cipher, group=cipher) + pairwise=cipher, group=cipher, scan_freq="2412") hwsim_utils.test_connectivity(dev.ifname, ap['ifname']) def test_ap_cipher_tkip(dev, apdev):