diff options
Diffstat (limited to 'tests/test_results.py')
-rw-r--r-- | tests/test_results.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_results.py b/tests/test_results.py index 4138ffd4..41f3dc40 100644 --- a/tests/test_results.py +++ b/tests/test_results.py @@ -139,19 +139,19 @@ def test_format_lines(statements, lines, result): {1,2,5,10,11,13,14}, (), "1-2, 5-11, 13-14" - ), + ), ( [1,2,3,4,5,10,11,12,13,14,98,99], [1,2,5,10,11,13,14,99], [(3, [4]), (5, [10, 11]), (98, [100, -1])], "1-2, 3->4, 5-11, 13-14, 98->100, 98->exit, 99" - ), + ), ( [1,2,3,4,98,99,100,101,102,103,104], [1,2,99,102,103,104], [(3, [4]), (104, [-1])], "1-2, 3->4, 99, 102-104" - ), + ), ]) def test_format_lines_with_arcs(statements, lines, arcs, result): assert format_lines(statements, lines, arcs) == result |