Issue 20123: Disable a problematic test.

This commit is contained in:
Eric Snow 2014-01-04 23:04:27 -07:00
parent 1d8bd67cca
commit 5ea97506a2
1 changed files with 3 additions and 2 deletions

View File

@ -634,13 +634,14 @@ class PydocImportTest(PydocBaseTest):
self.assertIn(expected, result) self.assertIn(expected, result)
@unittest.skip('some buildbots are not cooperating (#20123)')
def test_modules_search_builtin(self): def test_modules_search_builtin(self):
expected = '_imp - ' expected = 'gc - '
output = StringIO() output = StringIO()
helper = pydoc.Helper(output=output) helper = pydoc.Helper(output=output)
with captured_stdout() as help_io: with captured_stdout() as help_io:
helper('modules low-level') helper('modules garbage')
result = help_io.getvalue() result = help_io.getvalue()
self.assertTrue(result.startswith(expected)) self.assertTrue(result.startswith(expected))