Parcourir la source

tests: Report missing erp support more nicely in wpas_ctrl_get_capability

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 10 ans
Parent
commit
e2a8db7785
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tests/hwsim/test_wpas_ctrl.py

+ 1 - 1
tests/hwsim/test_wpas_ctrl.py

@@ -800,7 +800,7 @@ def test_wpas_ctrl_get_capability(dev):
         raise Exception("Unexpected GET_CAPABILITY tdls response: " + str(res))
         raise Exception("Unexpected GET_CAPABILITY tdls response: " + str(res))
 
 
     res = dev[0].get_capability("erp")
     res = dev[0].get_capability("erp")
-    if "ERP" not in res[0]:
+    if res is None or "ERP" not in res[0]:
         raise Exception("Unexpected GET_CAPABILITY erp response: " + str(res))
         raise Exception("Unexpected GET_CAPABILITY erp response: " + str(res))
 
 
     if dev[0].get_capability("foo") is not None:
     if dev[0].get_capability("foo") is not None: