Browse Source

tests: Use a single channel scan to avoid unnecessary wait

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 11 years ago
parent
commit
7daa9b9ad4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/test_ap_ciphers.py

+ 1 - 1
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):