aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_anydbm.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 +0000
committerBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 +0000
commitee8712cda46338d223509cc5751fd36509ad3860 (patch)
treebb9d363b4276566415457980472001c7e3ec2bed /Lib/test/test_anydbm.py
parent6a654814ea3f3a918935762ffdcd33ae98e00278 (diff)
downloadcpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.gz
cpython-ee8712cda46338d223509cc5751fd36509ad3860.zip
#2621 rename test.test_support to test.support
Diffstat (limited to 'Lib/test/test_anydbm.py')
-rw-r--r--Lib/test/test_anydbm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_anydbm.py b/Lib/test/test_anydbm.py
index 9399d711cff..ace9dd207cc 100644
--- a/Lib/test/test_anydbm.py
+++ b/Lib/test/test_anydbm.py
@@ -7,9 +7,9 @@ import os
import unittest
import anydbm
import glob
-from test import test_support
+from test import support
-_fname = test_support.TESTFN
+_fname = support.TESTFN
_all_modules = []
@@ -121,7 +121,7 @@ class AnyDBMTestCase(unittest.TestCase):
def test_main():
try:
for module in dbm_iterator():
- test_support.run_unittest(AnyDBMTestCase)
+ support.run_unittest(AnyDBMTestCase)
finally:
delete_files()