From: Jamie Wong Date: Sun, 13 Nov 2011 06:56:52 +0000 (-0800) Subject: Documentation fix for AsyncTestCase X-Git-Tag: v2.2.0~79^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7c0cafa58c6efb54ab0129233d6aa62a84d0a5c;p=thirdparty%2Ftornado.git Documentation fix for AsyncTestCase --- 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).