From 2bc77f6e1067b6a39c0b3a944823d72ca99c36e2 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 24 Oct 2015 21:13:44 -0400 Subject: [PATCH] Fix firewall prompts when running tests. --- tornado/test/web_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.47.2