]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Call the superclass's on_connection_close in this test.
authorBen Darnell <ben@bendarnell.com>
Sat, 26 Apr 2014 18:39:59 +0000 (14:39 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 26 Apr 2014 18:39:59 +0000 (14:39 -0400)
This fixes the last py3.3 uncollectable garbage warning.

tornado/test/web_test.py

index e4ae54ce74f9a54b7a303a4c8905733d08778514..4a45b8471f993bd2635856781f4da81f247dbd15 100644 (file)
@@ -1834,6 +1834,7 @@ class StreamingRequestBodyTest(WebTestCase):
                 self.test = test
 
             def on_connection_close(self):
+                super(CloseDetectionHandler, self).on_connection_close()
                 self.test.close_future.set_result(None)
 
         return [('/stream_body', StreamingBodyHandler, dict(test=self)),