summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 (GMT)
commitee8712cda46338d223509cc5751fd36509ad3860 (patch)
treebb9d363b4276566415457980472001c7e3ec2bed /Lib/test/test_binhex.py
parent6a654814ea3f3a918935762ffdcd33ae98e00278 (diff)
downloadcpython-ee8712cda46338d223509cc5751fd36509ad3860.zip
cpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.gz
cpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.bz2
#2621 rename test.test_support to test.support
Diffstat (limited to 'Lib/test/test_binhex.py')
-rwxr-xr-xLib/test/test_binhex.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index 61c24c9..06fd98a 100755
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -7,18 +7,18 @@
import binhex
import os
import unittest
-from test import test_support
+from test import support
class BinHexTestCase(unittest.TestCase):
def setUp(self):
- self.fname1 = test_support.TESTFN + "1"
- self.fname2 = test_support.TESTFN + "2"
+ self.fname1 = support.TESTFN + "1"
+ self.fname2 = support.TESTFN + "2"
def tearDown(self):
- test_support.unlink(self.fname1)
- test_support.unlink(self.fname2)
+ support.unlink(self.fname1)
+ support.unlink(self.fname2)
DATA = b'Jack is my hero'
@@ -39,7 +39,7 @@ class BinHexTestCase(unittest.TestCase):
def test_main():
- test_support.run_unittest(BinHexTestCase)
+ support.run_unittest(BinHexTestCase)
if __name__ == "__main__":