diff options
Diffstat (limited to 'Lib/test/test_aepack.py')
-rwxr-xr-x | Lib/test/test_aepack.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_aepack.py b/Lib/test/test_aepack.py index 8a4b035f05..5d4ab3e20b 100755 --- a/Lib/test/test_aepack.py +++ b/Lib/test/test_aepack.py @@ -1,11 +1,12 @@ # Copyright (C) 2003 Python Software Foundation import unittest -import aepack -import aetypes import os from test import test_support +aetypes = test_support.import_module('aetypes') +aepack = test_support.import_module('aepack') + class TestAepack(unittest.TestCase): OBJECTS = [ aetypes.Enum('enum'), |