tests: Fix p2p_channel_5ghz_only false negative by using common finalizer

p2p_channel_5ghz_only fails with this message.

---------------
wlan0: Country code not reset back to 00: is US
wlan0: Country code cleared back to 00
---------------

This patch fixes the issue.

Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
Masashi Honma 2019-06-25 10:51:06 +09:00 committed by Jouni Malinen
parent b8a868594a
commit 645a16f186

View file

@ -730,8 +730,8 @@ def test_p2p_channel_5ghz_only(dev):
raise Exception("Unexpected channel %d MHz" % freq) raise Exception("Unexpected channel %d MHz" % freq)
dev[0].remove_group() dev[0].remove_group()
finally: finally:
set_country("00")
dev[0].global_request("P2P_SET disallow_freq ") dev[0].global_request("P2P_SET disallow_freq ")
clear_regdom_dev(dev)
def test_p2p_channel_5ghz_165_169_us(dev): def test_p2p_channel_5ghz_165_169_us(dev):
"""P2P GO and 5 GHz channels 165 (allowed) and 169 (disallowed) in US""" """P2P GO and 5 GHz channels 165 (allowed) and 169 (disallowed) in US"""