From c7c0cafa58c6efb54ab0129233d6aa62a84d0a5c Mon Sep 17 00:00:00 2001 From: Jamie Wong Date: Sat, 12 Nov 2011 22:56:52 -0800 Subject: [PATCH] Documentation fix for AsyncTestCase --- tornado/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/testing.py b/tornado/testing.py index 0ad5bff4c..1fae0e3ec 100644 --- a/tornado/testing.py +++ b/tornado/testing.py @@ -69,7 +69,7 @@ class AsyncTestCase(unittest.TestCase): client.fetch("http://www.tornadoweb.org/", self.handle_fetch) self.wait() - def handle_fetch(self, response) + def handle_fetch(self, response): # Test contents of response (failures and exceptions here # will cause self.wait() to throw an exception and end the # test). -- 2.47.2