From 72e453de1f22fe405ea3dcb03fca3d6cfc2e0793 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 3 Feb 2016 07:38:35 -0500 Subject: Oops, this fixes a test too --- tests/test_html.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/tests/test_html.py b/tests/test_html.py index 97a7c6ab..d96804d6 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -524,13 +524,16 @@ class HtmlGoldTests(CoverageGoldTest): (' a = ' '3'), '70%', - ('' - '8 ↛ 11 [?]'), - ('17 ↛ exit [?]'), - ('25 ↛ 26,   ' - '25 ↛ 28 [?]'), + ('8 ↛ 11' + 'Line 8 was executed, ' + 'but never jumped to line 11'), + ('17 ↛ exit' + 'Line 17 was executed, ' + 'but never jumped to the function exit'), + ('25 ↛ 26,   ' + '25 ↛ 28' + 'Line 25 was executed, ' + 'but never jumped to line 26 or line 28