From: Collin Winter Date: Mon, 16 Apr 2007 22:10:32 +0000 (+0000) Subject: Check the availability of the urlfetch resource earlier than before. X-Git-Tag: v2.6a1~1833 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c20a250170f541f5fbba6ca2bb8d0383f5afc117;p=python Check the availability of the urlfetch resource earlier than before. --- diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py index 00e66faf00..055b403c01 100644 --- a/Lib/test/test_normalization.py +++ b/Lib/test/test_normalization.py @@ -88,6 +88,8 @@ class NormalizationTest(unittest.TestCase): def test_main(): + # Hit the exception early + open_urlresource(TESTDATAURL) run_unittest(NormalizationTest) if __name__ == "__main__":