mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-21 19:28:38 +00:00
Stop using the tornado reloader in tests.
This causes some interesting warnings.
This commit is contained in:
parent
66f3bfbca3
commit
c6551e8024
1 changed files with 2 additions and 2 deletions
4
tests.py
4
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):
|
||||
|
|
Loading…
Reference in a new issue