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

correction: pexpect.timeout -> TIMEOUT

parent 662fb712
No related branches found
No related tags found
No related merge requests found
...@@ -427,7 +427,7 @@ def interact( vm ): ...@@ -427,7 +427,7 @@ def interact( vm ):
# know the time for each test, which means that this # know the time for each test, which means that this
# script will have to change as we add more tests. # script will have to change as we add more tests.
for test in range( 0, 2 ): for test in range( 0, 2 ):
if vm.expect( [ 'OK', 'FAILED', pexpect.timeout ], timeout=60 ) == 0: if vm.expect( [ 'OK', 'FAILED', pexpect.TIMEOUT ], timeout=60 ) == 0:
log( '* Test', test, 'OK' ) log( '* Test', test, 'OK' )
else: else:
log( '* Test', test, 'FAILED' ) log( '* Test', test, 'FAILED' )
......
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