Updating test init to remove bad ascii characters

This commit is contained in:
GregBestland
2016-02-02 18:12:16 -06:00
parent 1abbbc0e1b
commit 645f7512f5

View File

@@ -161,7 +161,7 @@ def check_socket_listening(itf, timeout=60):
sock.close() sock.close()
return True return True
except socket.error: except socket.error:
# Try again in another 200ms # Try again in another 200ms
time.sleep(.2) time.sleep(.2)
continue continue
return False return False