From: Tim Peters Date: Sun, 4 Aug 2002 22:55:35 +0000 (+0000) Subject: We don't really need the name of the test in the "test skipped" msg, and X-Git-Tag: v2.3c1~4711 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6782d6aa91d9412c5b5a2ee0c12083a9f15f65a7;p=python We don't really need the name of the test in the "test skipped" msg, and having it there causes the line to wrap. --- diff --git a/Lib/test/test_mhlib.py b/Lib/test/test_mhlib.py index 3c675ae501..a6dc00ad92 100644 --- a/Lib/test/test_mhlib.py +++ b/Lib/test/test_mhlib.py @@ -21,7 +21,7 @@ if (sys.platform.startswith("win") or sys.platform=="riscos" or # link counts, and that causes test_listfolders() here to get back # an empty list from its call of listallfolders(). # The other tests here pass on Windows. - raise TestSkipped("test_mhlib skipped on %s -- " % sys.platform + + raise TestSkipped("skipped on %s -- " % sys.platform + "too many Unix assumptions") _mhroot = TESTFN+"_MH"