summaryrefslogtreecommitdiff
path: root/Lib/test/test_anydbm.py
diff options
context:
space:
mode:
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 9399d711cf..ace9dd207c 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()