diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-10 11:16:41 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-11 16:45:33 -0500 |
commit | 116f2f6b5a47eb2380c22f242327a7169a10ea7a (patch) | |
tree | aa3c5f884e4f7ed9129e0519555b46b09bc51cd9 /tests/farm/annotate/annotate_dir.py | |
parent | 595166ea38b970d652d10e1c6a91a09180ecd84a (diff) | |
download | python-coveragepy-git-116f2f6b5a47eb2380c22f242327a7169a10ea7a.tar.gz |
Comparison is not symmetric, it's expected vs actual
Diffstat (limited to 'tests/farm/annotate/annotate_dir.py')
-rw-r--r-- | tests/farm/annotate/annotate_dir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/farm/annotate/annotate_dir.py b/tests/farm/annotate/annotate_dir.py index 9bf1b768..0ecf71bd 100644 --- a/tests/farm/annotate/annotate_dir.py +++ b/tests/farm/annotate/annotate_dir.py @@ -6,5 +6,5 @@ run(""" coverage run multi.py coverage annotate -d out_anno_dir """, rundir="run") -compare("run/out_anno_dir", "gold_anno_dir", "*,cover", left_extra=True) +compare("gold_anno_dir", "run/out_anno_dir", "*,cover", actual_extra=True) clean("run") |