Replace example.com with pythontest.net in test_getcode of test_urllibnet
diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py
index 7c4b1f7..a4b4d92 100644
--- a/Lib/test/test_urllibnet.py
+++ b/Lib/test/test_urllibnet.py
@@ -111,7 +111,7 @@
def test_getcode(self):
# test getcode() with the fancy opener to get 404 error codes
- URL = "http://www.example.com/XXXinvalidXXX"
+ URL = "http://www.pythontest.net/XXXinvalidXXX"
open_url = urllib.FancyURLopener().open(URL)
try:
code = open_url.getcode()