[Python-checkins] r81429 - python/trunk/Lib/test/test_linecache.py

benjamin.peterson python-checkins at python.org
Fri May 21 23:17:22 CEST 2010


Author: benjamin.peterson
Date: Fri May 21 23:17:22 2010
New Revision: 81429

Log:
fix name

Modified:
   python/trunk/Lib/test/test_linecache.py

Modified: python/trunk/Lib/test/test_linecache.py
==============================================================================
--- python/trunk/Lib/test/test_linecache.py	(original)
+++ python/trunk/Lib/test/test_linecache.py	Fri May 21 23:17:22 2010
@@ -83,7 +83,7 @@
         getline = linecache.getline
         # Create a source file and cache its contents
         source_name = support.TESTFN + '.py'
-        self.addCleanup(test_support.unlink, source_name)
+        self.addCleanup(support.unlink, source_name)
         with open(source_name, 'w') as source:
             source.write(SOURCE_1)
         getline(source_name, 1)


More information about the Python-checkins mailing list