From: Johannes Berg Date: Tue, 3 Mar 2015 13:19:34 +0000 (+0100) Subject: tests: Fix python typo X-Git-Tag: hostap_2_4~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cba262e39b9c9d4d22ef7374f230f15412af47d7;p=thirdparty%2Fhostap.git tests: Fix python typo Clearly that should spell Exception. Signed-off-by: Johannes Berg --- diff --git a/tests/hwsim/test_hapd_ctrl.py b/tests/hwsim/test_hapd_ctrl.py index 7ca4d9b8f..a2d378452 100644 --- a/tests/hwsim/test_hapd_ctrl.py +++ b/tests/hwsim/test_hapd_ctrl.py @@ -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"): raise Exception("Unexpected NEW_STA failure") 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): """hostapd and GET ctrl_iface command"""