running tests enables us to discover that they actually work
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 @@
         # 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)