From 3da112c5afc85e6f22f687a977634f6e6df95de9 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 18 Jul 2015 11:02:46 +0300 Subject: [PATCH] tests: Use direct fst_test_common access There is no need to go through fst_module_aux to reach fst_test_common since both of these get imported here. Signed-off-by: Jouni Malinen --- tests/hwsim/test_fst_module.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/hwsim/test_fst_module.py b/tests/hwsim/test_fst_module.py index fff2934d8..045e1f514 100644 --- a/tests/hwsim/test_fst_module.py +++ b/tests/hwsim/test_fst_module.py @@ -1100,7 +1100,7 @@ def test_fst_dynamic_iface_attach(dev, apdev, test_params): ap2.start() sta1 = fst_module_aux.FstSTA('wlan5', - fst_module_aux.fst_test_common.fst_test_def_group, + fst_test_common.fst_test_def_group, fst_test_common.fst_test_def_prio_low, fst_test_common.fst_test_def_llt) sta1.start() @@ -1111,13 +1111,13 @@ def test_fst_dynamic_iface_attach(dev, apdev, test_params): orig_sta2_mbies = sta2.get_local_mbies() orig_ap2_mbies = ap2.get_local_mbies() sta2.send_iface_attach_request(sta2.ifname(), - fst_module_aux.fst_test_common.fst_test_def_group, + fst_test_common.fst_test_def_group, '52', '27') event = sta2.wait_for_iface_event(5) if event['event_type'] != 'attached': raise Exception("Failure. Iface was not properly attached") ap2.send_iface_attach_request(ap2.ifname(), - fst_module_aux.fst_test_common.fst_test_def_group, + fst_test_common.fst_test_def_group, '102', '77') event = ap2.wait_for_iface_event(5) if event['event_type'] != 'attached':