Removed unwanted wait_for_ip (#552)

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>
This commit is contained in:
jitendracandela
2022-05-20 10:07:02 +05:30
committed by GitHub
parent 3b638a141e
commit 69b3723028

View File

@@ -529,9 +529,10 @@ class RunTest:
self.data_scan_ssid = self.scan_ssid(radio=self.client_connect.radio.split(".")[2])
print("ssid scan data :- ", self.data_scan_ssid)
self.client_connect.build()
self.client_connect.wait_for_ip(station_name)
print(self.client_connect.wait_for_ip(station_name))
if self.client_connect.wait_for_ip(station_name):
result = self.client_connect.wait_for_ip(station_list=station_name, timeout_sec=100)
#print(self.client_connect.wait_for_ip(station_name))
print(result)
if result:
self.client_connect._pass("ALL Stations got IP's", print_=True)
return self.client_connect
else: