diff options
author | Guido van Rossum <guido@python.org> | 2000-08-21 22:59:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-08-21 22:59:29 (GMT) |
commit | ff18b800a4bfe80ddb12f50f0543dff159a5a96f (patch) | |
tree | 5fb695bedd30a80a39bac153f257bf577c4e8f91 /Lib/test/test_getopt.py | |
parent | 79ca79d1a904f7960fea34bec84c11eec70c4587 (diff) | |
download | cpython-ff18b800a4bfe80ddb12f50f0543dff159a5a96f.zip cpython-ff18b800a4bfe80ddb12f50f0543dff159a5a96f.tar.gz cpython-ff18b800a4bfe80ddb12f50f0543dff159a5a96f.tar.bz2 |
Don't reference a module named test.test_support. Always use plain
test_support. Also fixed the expected output.
Diffstat (limited to 'Lib/test/test_getopt.py')
-rw-r--r-- | Lib/test/test_getopt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_getopt.py b/Lib/test/test_getopt.py index 1580a79..3927c1c 100644 --- a/Lib/test/test_getopt.py +++ b/Lib/test/test_getopt.py @@ -3,7 +3,7 @@ import getopt from getopt import GetoptError -from test.test_support import verbose +from test_support import verbose def expectException(teststr, expected, failure=AssertionError): """Executes a statement passed in teststr, and raises an exception |