test_support -> support

This commit is contained in:
Benjamin Peterson 2016-04-16 15:02:23 -07:00
parent 2b601d3905
commit 8917226e4a
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ class SliceTest(unittest.TestCase):
o.s = slice(o)
w = weakref.ref(o)
o = None
test_support.gc_collect()
support.gc_collect()
self.assertIsNone(w())
if __name__ == "__main__":