From 107b6edee025755ac0ff3b20e9a01015f19904d0 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Mon, 30 Nov 2020 21:20:51 +1300 Subject: [PATCH] Black formatting of test --- __tests__/test_handlers.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/__tests__/test_handlers.py b/__tests__/test_handlers.py index 8afef8ab..f6015641 100644 --- a/__tests__/test_handlers.py +++ b/__tests__/test_handlers.py @@ -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):