summaryrefslogtreecommitdiff
path: root/docutils/test
diff options
context:
space:
mode:
Diffstat (limited to 'docutils/test')
-rwxr-xr-xdocutils/test/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docutils/test/test_utils.py b/docutils/test/test_utils.py
index 0f53355eb..855cea39f 100755
--- a/docutils/test/test_utils.py
+++ b/docutils/test/test_utils.py
@@ -319,7 +319,7 @@ class HelperFunctionTests(unittest.TestCase):
# '..\\HISTORY.txt' on windows
# '../HISTORY.txt' on other platforms
# 'HISTORY.txt' if not called from docutils directory.
- self.assertTrue(found.startswith('..'))
+ self.assertTrue(found.startswith('..'), 'HISTORY.txt not found in "..".')
# Return `path` if the file exists in the cwd or if there is no match
self.assertEqual(utils.find_file_in_dirs('alltests.py', dirs),
'alltests.py')