diff options
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 9f07b9cc..548f3dd7 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -1208,7 +1208,7 @@ class PydocTest(CoverageTest): # Run pydoc. out = self.run_command("python -m pydoc " + name) # It should say "Help on..", and not have a traceback - self.assert_starts_with(out, "Help on ") + assert out.startswith("Help on ") assert "Traceback" not in out # All of the lines in the docstring should be there somewhere. |