diff options
Diffstat (limited to 'tests/farm/annotate')
-rw-r--r-- | tests/farm/annotate/annotate_dir.py | 2 | ||||
-rw-r--r-- | tests/farm/annotate/run.py | 2 | ||||
-rw-r--r-- | tests/farm/annotate/run_encodings.py | 2 | ||||
-rw-r--r-- | tests/farm/annotate/run_multi.py | 2 |
4 files changed, 4 insertions, 4 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") diff --git a/tests/farm/annotate/run.py b/tests/farm/annotate/run.py index 6c98a770..6a985d5e 100644 --- a/tests/farm/annotate/run.py +++ b/tests/farm/annotate/run.py @@ -6,5 +6,5 @@ run(""" coverage run white.py coverage annotate white.py """, rundir="out") -compare("out", "gold", "*,cover") +compare("gold", "out", "*,cover") clean("out") diff --git a/tests/farm/annotate/run_encodings.py b/tests/farm/annotate/run_encodings.py index 8fd98fea..1b738988 100644 --- a/tests/farm/annotate/run_encodings.py +++ b/tests/farm/annotate/run_encodings.py @@ -6,5 +6,5 @@ run(""" coverage run utf8.py coverage annotate utf8.py """, rundir="out_encodings") -compare("out_encodings", "gold_encodings", "*,cover") +compare("gold_encodings", "out_encodings", "*,cover") clean("out_encodings") diff --git a/tests/farm/annotate/run_multi.py b/tests/farm/annotate/run_multi.py index d3c4cf7c..eff9ff76 100644 --- a/tests/farm/annotate/run_multi.py +++ b/tests/farm/annotate/run_multi.py @@ -6,5 +6,5 @@ run(""" coverage run multi.py coverage annotate """, rundir="out_multi") -compare("out_multi", "gold_multi", "*,cover") +compare("gold_multi", "out_multi", "*,cover") clean("out_multi") |