summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_binhex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index 86ca37c..8595532 100644
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -7,7 +7,7 @@ import unittest
from test import support
with support.check_warnings(('', DeprecationWarning)):
- import binhex
+ binhex = support.import_fresh_module('binhex')
class BinHexTestCase(unittest.TestCase):