diff options
author | Daniel Pinto <danielpinto52@gmail.com> | 2020-08-12 14:35:51 +0100 |
---|---|---|
committer | Daniel Pinto <danielpinto52@gmail.com> | 2020-08-12 14:35:51 +0100 |
commit | 60c436d14d05dcc5e03058a16373c53ff94469c5 (patch) | |
tree | 6a306c8532007b95470545b3acabe8cbbdfef3e0 /src/test/test_include.py | |
parent | 0b633b1f6d022a359806a705bd4a6082d92bd3f3 (diff) | |
download | tor-60c436d14d05dcc5e03058a16373c53ff94469c5.tar.gz tor-60c436d14d05dcc5e03058a16373c53ff94469c5.zip |
Attempt to fix test_include.py on TravisCI #25140
Diffstat (limited to 'src/test/test_include.py')
-rw-r--r-- | src/test/test_include.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_include.py b/src/test/test_include.py index 0ac87ee8fb..ec261da86c 100644 --- a/src/test/test_include.py +++ b/src/test/test_include.py @@ -127,7 +127,7 @@ tor_process = subprocess.Popen([tor_path, if tor_process == None: fail('ERROR: running tor failed') -wait_for_log('Opened Control listener on') +wait_for_log('Opened Control listener') control_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if control_socket.connect_ex(('127.0.0.1', control_port)): |