From 08d3b3df9919e0f8726f1e2c18193d530ccc07f3 Mon Sep 17 00:00:00 2001 From: Masashi Honma Date: Tue, 25 Jun 2019 10:51:08 +0900 Subject: [PATCH] tests: Fix p2p_go_move_scm_peer_does_not_support false negative by using common finalizer p2p_go_move_scm_peer_does_not_support 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 --- tests/hwsim/test_p2p_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/test_p2p_channel.py b/tests/hwsim/test_p2p_channel.py index beee61d63..ad1d712d6 100644 --- a/tests/hwsim/test_p2p_channel.py +++ b/tests/hwsim/test_p2p_channel.py @@ -996,7 +996,7 @@ def _test_p2p_go_move_scm_peer_does_not_support(dev, apdev): finally: dev[0].global_request("SET p2p_go_freq_change_policy 2") dev[1].request("DRIVER_EVENT AVOID_FREQUENCIES") - set_country("00") + clear_regdom_dev(dev, 2) def test_p2p_go_move_scm_multi(dev, apdev): """P2P GO move due to SCM operation preference multiple times"""