Revert "Revert "sta_connect: Fix whitespace""

This reverts commit 354ebaefeb.
This commit is contained in:
Chuck SmileyRekiere
2021-12-13 17:33:59 -07:00
parent 98e96523fc
commit 0687cc1b27

View File

@@ -13,7 +13,6 @@ if sys.version_info[0] != 3:
print("This script requires Python 3") print("This script requires Python 3")
exit(1) exit(1)
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../"))) sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
LFUtils = importlib.import_module("py-json.LANforge.LFUtils") LFUtils = importlib.import_module("py-json.LANforge.LFUtils")
@@ -99,7 +98,6 @@ class StaConnect(Realm):
def num_associated(self, bssid): def num_associated(self, bssid):
counter = 0 counter = 0
# print("there are %d results" % len(self.station_results)) # print("there are %d results" % len(self.station_results))
fields = "_links,port,alias,ip,ap,port+type"
if (self.station_results is None) or (len(self.station_results) < 1): if (self.station_results is None) or (len(self.station_results) < 1):
self.get_failed_result_list() self.get_failed_result_list()
for eid, record in self.station_results.items(): for eid, record in self.station_results.items():
@@ -256,7 +254,8 @@ class StaConnect(Realm):
# self.test_results.append("PASSED: ) # self.test_results.append("PASSED: )
# print("PASSED: Connected to BSSID: "+ap) # print("PASSED: Connected to BSSID: "+ap)
else: else:
self._fail("%s connected to wrong BSSID, requested: %s Actual: %s" % (sta_name, self.dut_bssid, ap)) self._fail(
"%s connected to wrong BSSID, requested: %s Actual: %s" % (sta_name, self.dut_bssid, ap))
else: else:
self._fail(sta_name + " did not connect to AP") self._fail(sta_name + " did not connect to AP")
return False return False
@@ -508,7 +507,7 @@ Example:
staConnect.run() staConnect.run()
run_results = staConnect.get_result_list() staConnect.get_result_list()
if not staConnect.passes(): if not staConnect.passes():
print("FAIL: Some tests failed") print("FAIL: Some tests failed")
@@ -524,6 +523,7 @@ Example:
print(staConnect.get_all_message()) print(staConnect.get_all_message())
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -