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 <j@w1.fi>
This commit is contained in:
parent
d4c3c055d5
commit
a63ebc159d
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ def test_wifi_display_parsing(dev):
|
||||||
dev[1].request("VENDOR_ELEM_REMOVE 11 *")
|
dev[1].request("VENDOR_ELEM_REMOVE 11 *")
|
||||||
dev[0].request("SET wifi_display 0")
|
dev[0].request("SET wifi_display 0")
|
||||||
|
|
||||||
def test_wifi_display_parsing(dev):
|
def _test_wifi_display_parsing(dev):
|
||||||
wfd_devinfo = "00411c440028"
|
wfd_devinfo = "00411c440028"
|
||||||
dev[0].request("SET wifi_display 1")
|
dev[0].request("SET wifi_display 1")
|
||||||
dev[0].request("WFD_SUBELEM_SET 0 0006" + wfd_devinfo)
|
dev[0].request("WFD_SUBELEM_SET 0 0006" + wfd_devinfo)
|
||||||
|
|
Loading…
Reference in a new issue