Skip to content

Commit 637268f

Browse files
author
David Noble
committed
Added a to-do and improved an error message
See DVPL-6700 and the code changes.
1 parent 2d0571a commit 637268f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_examples.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,9 @@ def test_custom_search_command(script, input_path, baseline_path):
264264
output_file = open(output_path, 'r')
265265
output = output_file.read()
266266

267-
message = "%s != %s" % (output_file.name, baseline_file.name)
267+
# TODO: DVPL-6700: Rewrite this test so that it is insensitive to ties in score
268+
269+
message = "%s: %s != %s" % (script, output_file.name, baseline_file.name)
268270
check_multiline(self, baseline, output, message)
269271

270272
# Cleanup

0 commit comments

Comments
 (0)