Skip to content

Commit

Permalink
Make the flaky test a bit less flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Apr 25, 2019
1 parent f96a717 commit 96df9a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zope/paste/tests.py
Expand Up @@ -119,7 +119,7 @@ def test_serving_test_app():
>>> from zope.paste import serve
>>> server = threading.Thread(target=serve.serve, args=(['app.ini'],))
>>> server.start()
>>> import time; time.sleep(1)
>>> import time; time.sleep(5)
Serving on http://localhost:8765
>>> print(urlopen('http://localhost:8765/').read().decode())
Expand Down

0 comments on commit 96df9a7

Please sign in to comment.