From: Ben Darnell Date: Sun, 25 Oct 2015 01:13:44 +0000 (-0400) Subject: Fix firewall prompts when running tests. X-Git-Tag: v4.3.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bc77f6e1067b6a39c0b3a944823d72ca99c36e2;p=thirdparty%2Ftornado.git Fix firewall prompts when running tests. --- diff --git a/tornado/test/web_test.py b/tornado/test/web_test.py index 6bd7f44bc..36312f975 100644 --- a/tornado/test/web_test.py +++ b/tornado/test/web_test.py @@ -2761,5 +2761,5 @@ class HTTPErrorTest(unittest.TestCase): class ApplicationTest(AsyncTestCase): def test_listen(self): app = Application([]) - server = app.listen(0) + server = app.listen(0, address='127.0.0.1') server.stop()