diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-17 22:44:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-17 22:44:29 -0500 |
commit | d28a509215963231d1766c8680d2f340cd7ad17d (patch) | |
tree | 423ae3b5ad5305bb6e7dfc550e03b38170df23e7 /tests/test_arcs.py | |
parent | 51abec65dd218973c3a478af7175a9ccf103de31 (diff) | |
download | python-coveragepy-git-d28a509215963231d1766c8680d2f340cd7ad17d.tar.gz |
A few more lines covered
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 1388d506..c1fd35b6 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -1094,10 +1094,11 @@ class OptimizedIfTest(CoverageTest): if 0: e = 11 f = 12 if 0: g = 13 - h = 14 + h = 14 + i = 15 """, - lines=[1, 12, 14], - arcz=".1 1C CE E.", + lines=[1, 12, 14, 15], + arcz=".1 1C CE EF F.", ) def test_constant_if(self): |