]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
routing_test: Remove test of log message
authorBen Darnell <ben@bendarnell.com>
Sun, 5 Nov 2017 23:31:53 +0000 (18:31 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 5 Nov 2017 23:31:53 +0000 (18:31 -0500)
tornado/test/routing_test.py

index 6a4e0dc667c6e54fefeb39353e478690cddb5156..9e3634b94e27d4dd1a0a6230f7edaac1bf65265b 100644 (file)
@@ -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)