summaryrefslogtreecommitdiff
path: root/test/farm/html/src/y.py
blob: af7c968988e5647fc0ef0fb7f31c4e18ec37456a (plain)
1
2
3
4
5
6
7
8
9
# A test file for XML reporting by coverage.

def choice(x):
    if x < 2:
        return 3
    else:
        return 4

assert choice(1) == 3