Skip to content

Commit

Permalink
Update basic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Feb 20, 2023
1 parent 99e2216 commit 37a8ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_https_server(hostname, port, proxy=None):
cmdline.append(url)
print('subprocess.run', ' '.join(cmdline))
result = subprocess.run(cmdline, capture_output=True,
timeout=1, text=True, encoding='utf-8')
timeout=10, text=True, encoding='utf-8')
print(result.stderr, end='')
return 'Error code: 404' in result.stdout

Expand Down

0 comments on commit 37a8ac8

Please sign in to comment.