diff options
Diffstat (limited to 'tests/farm/html/src/partial.py')
-rw-r--r-- | tests/farm/html/src/partial.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/farm/html/src/partial.py b/tests/farm/html/src/partial.py index 66dddacd..0f8fbe3c 100644 --- a/tests/farm/html/src/partial.py +++ b/tests/farm/html/src/partial.py @@ -1,9 +1,9 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt -# partial branches +# partial branches and excluded lines -a = 3 +a = 6 while True: break @@ -18,4 +18,7 @@ if 0: never_happen() if 1: - a = 13 + a = 21 + +if a == 23: + raise AssertionError("Can't") |