From a63ebc159d5996924850cbc62422f40abb3164bd Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 31 Oct 2015 16:31:03 +0200 Subject: [PATCH] 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 --- tests/hwsim/test_p2p_wifi_display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)