tests: Fix python typo
Clearly that should spell Exception. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
00c35673fd
commit
cba262e39b
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ def test_hapd_ctrl_new_sta(dev, apdev):
|
||||||
if "OK" not in hapd.request("NEW_STA 00:11:22:33:44:55"):
|
if "OK" not in hapd.request("NEW_STA 00:11:22:33:44:55"):
|
||||||
raise Exception("Unexpected NEW_STA failure")
|
raise Exception("Unexpected NEW_STA failure")
|
||||||
if "AUTHORIZED" not in hapd.request("STA 00:11:22:33:44:55"):
|
if "AUTHORIZED" not in hapd.request("STA 00:11:22:33:44:55"):
|
||||||
raise Esception("Unexpected NEW_STA STA status")
|
raise Exception("Unexpected NEW_STA STA status")
|
||||||
|
|
||||||
def test_hapd_ctrl_get(dev, apdev):
|
def test_hapd_ctrl_get(dev, apdev):
|
||||||
"""hostapd and GET ctrl_iface command"""
|
"""hostapd and GET ctrl_iface command"""
|
||||||
|
|
Loading…
Reference in a new issue