From eb1d68eff0b5cf7d00ebb31597726dad44c30910 Mon Sep 17 00:00:00 2001 From: Ben Rosenfeld Date: Tue, 5 May 2015 12:36:51 +0300 Subject: [PATCH] tests: Change set_country() to use the global interface to get event This is required for cases that multiple interfaces are used and the event can happen on any of them, for example when a dedicated P2P Device interface is used. Signed-off-by: Ben Rosenfeld --- 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 d89159a50..779ce9237 100644 --- a/tests/hwsim/test_p2p_channel.py +++ b/tests/hwsim/test_p2p_channel.py @@ -26,7 +26,7 @@ def set_country(country, dev=None): time.sleep(0.1) if dev: for i in range(10): - ev = dev.wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=15) + ev = dev.wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=15) if ev is None: raise Exception("No regdom change event seen") if "type=COUNTRY alpha2=" + country in ev: