diff mbox series

[30/32] tests: Fix p2p_channel_5ghz_165_169_us false negative by using common finalizer

Message ID 20190625015109.6705-30-masashi.honma@gmail.com
State Accepted
Headers show
Series [01/32] tests: Fix nfc_wps_handover_chan14 false negative by using common finalizer | expand

Commit Message

Masashi Honma June 25, 2019, 1:51 a.m. UTC
p2p_channel_5ghz_165_169_us 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>
---
 tests/hwsim/test_p2p_channel.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tests/hwsim/test_p2p_channel.py b/tests/hwsim/test_p2p_channel.py
index ada293b7a..beee61d63 100644
--- a/tests/hwsim/test_p2p_channel.py
+++ b/tests/hwsim/test_p2p_channel.py
@@ -746,7 +746,7 @@  def test_p2p_channel_5ghz_165_169_us(dev):
         if "FAIL" not in res:
             raise Exception("GO on channel 169 allowed unexpectedly")
     finally:
-        set_country("00")
+        clear_regdom_dev(dev)
 
 def wait_go_down_up(dev):
     ev = dev.wait_group_event(["AP-DISABLED"], timeout=5)