From c6551e8024001c9958e8e9396ddbf992d6b77304 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Sun, 12 Sep 2021 09:41:32 -0400 Subject: [PATCH] Stop using the tornado reloader in tests. This causes some interesting warnings. --- tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests.py b/tests.py index 5b735e5..5331448 100644 --- a/tests.py +++ b/tests.py @@ -63,7 +63,7 @@ def pack_bytes(payload): class SendResponseTests(testing.AsyncHTTPTestCase): def get_app(self): - return examples.make_application(debug=True) + return examples.make_application() def test_that_content_type_default_works(self): response = self.fetch('/', method='POST', body='{}', @@ -119,7 +119,7 @@ class GetRequestBodyTests(testing.AsyncHTTPTestCase): super().setUp() def get_app(self): - self.app = examples.make_application(debug=True) + self.app = examples.make_application() return self.app def test_that_request_with_unhandled_type_results_in_415(self):