tests: Fix check_sae_pk_capab() with non-SAE builds
dev.get_capability() returns None in such a case. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
57550cb27a
commit
577abde952
1 changed files with 2 additions and 1 deletions
|
@ -114,7 +114,8 @@ def check_sae_capab(dev):
|
|||
raise HwsimSkip("SAE not supported")
|
||||
|
||||
def check_sae_pk_capab(dev):
|
||||
if "PK" not in dev.get_capability("sae"):
|
||||
capab = dev.get_capability("sae")
|
||||
if capab is None or "PK" not in capab:
|
||||
raise HwsimSkip("SAE-PK not supported")
|
||||
|
||||
def check_erp_capa(dev):
|
||||
|
|
Loading…
Reference in a new issue