From 5ea97506a2fdafaa42620f20354a1a9ccb5f2978 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Sat, 4 Jan 2014 23:04:27 -0700 Subject: [PATCH] Issue 20123: Disable a problematic test. --- Lib/test/test_pydoc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 16f7835c79b..250fb04dcdc 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -634,13 +634,14 @@ class PydocImportTest(PydocBaseTest): self.assertIn(expected, result) + @unittest.skip('some buildbots are not cooperating (#20123)') def test_modules_search_builtin(self): - expected = '_imp - ' + expected = 'gc - ' output = StringIO() helper = pydoc.Helper(output=output) with captured_stdout() as help_io: - helper('modules low-level') + helper('modules garbage') result = help_io.getvalue() self.assertTrue(result.startswith(expected))