From: Ben Darnell Date: Sat, 26 Apr 2014 18:39:59 +0000 (-0400) Subject: Call the superclass's on_connection_close in this test. X-Git-Tag: v4.0.0b1~91^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d2158971754eacb884c7e7aa98289cc153d6044;p=thirdparty%2Ftornado.git Call the superclass's on_connection_close in this test. This fixes the last py3.3 uncollectable garbage warning. --- diff --git a/tornado/test/web_test.py b/tornado/test/web_test.py index e4ae54ce7..4a45b8471 100644 --- a/tornado/test/web_test.py +++ b/tornado/test/web_test.py @@ -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)),