Browse Source

tests: Fix OpenSSL capability check in suite_b_192_mic_failure

This needs to check for 192-bit level instead of 128-bit level.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 8 years ago
parent
commit
96a8cc881b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/test_suite_b.py

+ 1 - 1
tests/hwsim/test_suite_b.py

@@ -283,7 +283,7 @@ def test_suite_b_mic_failure(dev, apdev):
 
 def test_suite_b_192_mic_failure(dev, apdev):
     """WPA2/GCMP connection at Suite B 192-bit level and MIC derivation failure"""
-    check_suite_b_capa(dev)
+    check_suite_b_192_capa(dev)
     dev[0].flush_scan_cache()
     params = suite_b_192_ap_params()
     hapd = hostapd.add_ap(apdev[0], params)