From 3facb8cc1a60d5cffa733e8aeddb0433ddd01298 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 30 Jul 2011 23:39:39 -0500 Subject: running tests enables us to discover that they actually work --- Lib/test/test_urllib2net.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index 4894151..bd2c467 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -191,7 +191,7 @@ class OtherNetworkTests(unittest.TestCase): # Verify that those work properly. (#issue12576) URL = 'http://www.imdb.com' # No Connection:close - with test_support.transient_internet(url): + with test_support.transient_internet(URL): req = urllib2.urlopen(URL) res = req.read() self.assertTrue(res) -- cgit v0.12