From: Ben Darnell Date: Sun, 5 Nov 2017 23:31:53 +0000 (-0500) Subject: routing_test: Remove test of log message X-Git-Tag: v5.0.0~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cccd5fad380f22ab45ecd2a6b3ab60638778efb3;p=thirdparty%2Ftornado.git routing_test: Remove test of log message --- diff --git a/tornado/test/routing_test.py b/tornado/test/routing_test.py index 6a4e0dc66..9e3634b94 100644 --- a/tornado/test/routing_test.py +++ b/tornado/test/routing_test.py @@ -238,6 +238,5 @@ class WSGIContainerTestCase(AsyncHTTPTestCase): self.assertEqual(response.body, b"WSGI") def test_delegate_not_found(self): - with ExpectLog(app_log, "Delegate for GET /404 request not found"): - response = self.fetch("/404") + response = self.fetch("/404") self.assertEqual(response.code, 404)