Call unfakehttp in order to close connection while opening the connection through a fakehttp object.
Address issue11609 - urllib related buildbots failure.
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index 074d833..e39fa8d 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -176,8 +176,11 @@
 
     def test_willclose(self):
         self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!")
-        resp = urlopen("http://www.python.org")
-        self.assertTrue(resp.fp.will_close)
+        try:
+            resp = urlopen("http://www.python.org")
+            self.assertTrue(resp.fp.will_close)
+        finally:
+            self.unfakehttp()
 
     def test_read_0_9(self):
         # "0.9" response accepted (but not "simple responses" without