summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_pydoc.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index 16f7835..250fb04 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))