diff options
author | Skip Montanaro <skip@pobox.com> | 2004-09-14 17:55:21 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-09-14 17:55:21 +0000 |
commit | cae14d2714f363445d8ac0d631dc102b0ef292a9 (patch) | |
tree | 01e8a066d6fe02f635df0d79cb08302635630aab /Lib/test/test_httplib.py | |
parent | 1fd00a1b7185a6bfb575e3ca0303e5fdc9d24498 (diff) | |
download | cpython-git-cae14d2714f363445d8ac0d631dc102b0ef292a9.tar.gz |
missed the obvious test case and corresponding fix
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r-- | Lib/test/test_httplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index b49f71d2e3..046f4f871a 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -119,7 +119,7 @@ def _test(): print "Expect InvalidURL" for hp in ("[fe80::207:e9ff:fe9b]:8000", "www.python.org:80", - "www.python.org"): + "www.python.org", "[fe80::207:e9ff:fe9b]"): try: h = httplib.HTTP(hp) except httplib.InvalidURL: |