From: Jouni Malinen Date: Sat, 31 Oct 2015 14:31:03 +0000 (+0200) Subject: tests: Fix wifi_display_parsing X-Git-Tag: hostap_2_6~1428 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a63ebc159d5996924850cbc62422f40abb3164bd;p=thirdparty%2Fhostap.git tests: Fix wifi_display_parsing Due to a typo in a function name, this test case ended up running without the final cleanup. That could result in the following test cases failing, e.g., when running this sequence: wifi_display_parsing dbus_p2p_go_neg_auth Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_p2p_wifi_display.py b/tests/hwsim/test_p2p_wifi_display.py index e463b3f93..4eb480121 100644 --- a/tests/hwsim/test_p2p_wifi_display.py +++ b/tests/hwsim/test_p2p_wifi_display.py @@ -327,7 +327,7 @@ def test_wifi_display_parsing(dev): dev[1].request("VENDOR_ELEM_REMOVE 11 *") dev[0].request("SET wifi_display 0") -def test_wifi_display_parsing(dev): +def _test_wifi_display_parsing(dev): wfd_devinfo = "00411c440028" dev[0].request("SET wifi_display 1") dev[0].request("WFD_SUBELEM_SET 0 0006" + wfd_devinfo)