From: Jouni Malinen Date: Sat, 28 Jan 2017 23:26:57 +0000 (+0200) Subject: tests: Fix OpenSSL capability check in suite_b_192_mic_failure X-Git-Tag: hostap_2_7~1728 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96a8cc881b0b8c833e54cc95e1d2824734103e70;p=thirdparty%2Fhostap.git 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 --- diff --git a/tests/hwsim/test_suite_b.py b/tests/hwsim/test_suite_b.py index 8fd4caeb1..8ee4da7f3 100644 --- a/tests/hwsim/test_suite_b.py +++ b/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)