Black formatting of test

This commit is contained in:
James Barnsley
2020-11-30 21:20:51 +13:00
parent 81bdb24033
commit 107b6edee0

View File

@ -28,7 +28,16 @@ class HttpHandlerTest(tornado.testing.AsyncHTTPTestCase):
# http_handler.handle_result = mock.Mock()
# self.handler_mock = http_handler.handle_result
return tornado.web.Application(
[(r"/(.*)", http_handler, {"core": None, "config": {},},)]
[
(
r"/(.*)",
http_handler,
{
"core": None,
"config": {},
},
)
]
)
def test_get_method(self):