(self)
| 64 | |
| 65 | class LeakTest(AsyncTestCase): |
| 66 | def tearDown(self): |
| 67 | super().tearDown() |
| 68 | # Trigger a gc to make warnings more deterministic. |
| 69 | gc.collect() |
| 70 | |
| 71 | def test_leaked_coroutine(self): |
| 72 | # This test verifies that "leaked" coroutines are shut down |