tests/remote: Fix style and typos
authorJonathan Afek <jonathan@wizery.com>
Thu, 19 May 2016 13:06:46 +0000 (16:06 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 28 May 2016 13:34:02 +0000 (16:34 +0300)
Signed-off-by: Jonathan Afek <jonathanx.afek@intel.com>
tests/remote/hwsim_wrapper.py
tests/remote/monitor.py
tests/remote/test_devices.py

index 8c21a86..d70fe85 100644 (file)
@@ -48,7 +48,8 @@ def run_hwsim_test(devices, setup_params, refs, duts, monitors, hwsim_test):
         # run hostapd/wpa_supplicant
         for ref_host in ref_hosts:
             rutils.run_wpasupplicant(ref_host, setup_params)
-            wpas = WpaSupplicant(hostname = ref_host.host, global_iface="udp", global_port = ref_host.port)
+            wpas = WpaSupplicant(hostname=ref_host.host, global_iface="udp",
+                                 global_port=ref_host.port)
             wpas.interface_add(ref_host.ifname)
             dev.append(wpas)
         for dut_host in dut_hosts:
index e5bcaad..22518e0 100644 (file)
@@ -15,7 +15,7 @@ import hostapd
 
 # standalone monitor with multi iface support
 def create(devices, setup_params, refs, duts, monitors):
-    mons= []
+    mons = []
     mhosts = []
     hosts = duts + refs
 
index 4c89c13..97484f5 100644 (file)
@@ -121,11 +121,11 @@ def check_device(devices, setup_params, dev_name, monitor=False):
 
     status, buf = host.execute(["which", setup_params['iperf']])
     if status != 0:
-        raise Exception(dev_name + " - hostapd: " + buf)
+        raise Exception(dev_name + " - iperf: " + buf)
 
     status, buf = host.execute(["which", "tshark"])
     if status != 0:
-        logger.debug(dev_name + " - hostapd: " + buf)
+        logger.debug(dev_name + " - tshark: " + buf)
 
 def check_devices(devices, setup_params, refs, duts, monitors):
     """Check duts/refs/monitors devices"""