From f3c188fa7d8c29bd5f62a10fba1d2eb274fa9a6a Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 24 Aug 2019 00:14:41 +0300 Subject: [PATCH] tests: Import helper functions directly from utils.py These were moved from test_sae.py to utils.py, so import them from the correct location instead of through test_sae.py that imports them from utils.py. Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_mesh.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py index cb1bb8c31..12b00f746 100644 --- a/tests/hwsim/test_wpas_mesh.py +++ b/tests/hwsim/test_wpas_mesh.py @@ -16,11 +16,11 @@ import binascii import hwsim_utils import hostapd from wpasupplicant import WpaSupplicant -from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger +from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger, \ + radiotap_build, start_monitor, stop_monitor from tshark import run_tshark, run_tshark_json from test_ap_ht import set_world_reg -from test_sae import radiotap_build, start_monitor, stop_monitor, \ - build_sae_commit, sae_rx_commit_token_req +from test_sae import build_sae_commit, sae_rx_commit_token_req from hwsim_utils import set_group_map def check_mesh_support(dev, secure=False): -- 2.39.2