Skip to content
Snippets Groups Projects
Commit 342d47cf authored by Bob Lantz's avatar Bob Lantz
Browse files

call to run() should be to runCmd()

parent 554abdd5
No related branches found
No related tags found
No related merge requests found
......@@ -554,7 +554,7 @@ def waitListening( client=None, server='127.0.0.1', port=80, timeout=None ):
cmd = ( 'sh -c "echo A | telnet -e A %s %s"' %
( serverIP, port ) )
time = 0
while 'Connected' not in run( cmd ):
while 'Connected' not in runCmd( cmd ):
if timeout:
print time
if time >= timeout:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment