From 6782d6aa91d9412c5b5a2ee0c12083a9f15f65a7 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 4 Aug 2002 22:55:35 +0000 Subject: [PATCH] We don't really need the name of the test in the "test skipped" msg, and having it there causes the line to wrap. --- Lib/test/test_mhlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_mhlib.py b/Lib/test/test_mhlib.py index 3c675ae501e..a6dc00ad929 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"