]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Documentation fix for AsyncTestCase 398/head
authorJamie Wong <phleet@gmail.com>
Sun, 13 Nov 2011 06:56:52 +0000 (22:56 -0800)
committerJamie Wong <phleet@gmail.com>
Sun, 13 Nov 2011 06:56:52 +0000 (22:56 -0800)
tornado/testing.py

index 0ad5bff4cd3c7c12de9cfd4f064f988da3f4c0cd..1fae0e3ecda9931d465f7d17f367f1ff1d1701b0 100644 (file)
@@ -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).