diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-18 11:24:07 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-18 12:23:05 -0500 |
commit | 740d257d6c6a1bd26900af5115aa9cfa2d3a8b40 (patch) | |
tree | e64144aad8658c504178ded75e98870d11fc2de0 /tests/test_annotate.py | |
parent | 2fb113e60c2733e640f92d737278431a1f670052 (diff) | |
download | python-coveragepy-git-740d257d6c6a1bd26900af5115aa9cfa2d3a8b40.tar.gz |
Rename farm to gold, since that's what it is
Diffstat (limited to 'tests/test_annotate.py')
-rw-r--r-- | tests/test_annotate.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_annotate.py b/tests/test_annotate.py index 5b275f93..65054ffd 100644 --- a/tests/test_annotate.py +++ b/tests/test_annotate.py @@ -41,7 +41,7 @@ class AnnotationGoldTest1(CoverageTest): self.start_import_stop(cov, "multi") cov.annotate() - compare(gold_path("annotate/gold_multi"), ".", "*,cover") + compare(gold_path("annotate/multi"), ".", "*,cover") def test_annotate_dir(self): self.make_multi() @@ -49,7 +49,7 @@ class AnnotationGoldTest1(CoverageTest): self.start_import_stop(cov, "multi") cov.annotate(directory="out_anno_dir") - compare(gold_path("annotate/gold_anno_dir"), "out_anno_dir", "*,cover") + compare(gold_path("annotate/anno_dir"), "out_anno_dir", "*,cover") def test_encoding(self): self.make_file("utf8.py", """\ @@ -61,7 +61,7 @@ class AnnotationGoldTest1(CoverageTest): cov = coverage.Coverage() self.start_import_stop(cov, "utf8") cov.annotate() - compare(gold_path("annotate/gold_encodings"), ".", "*,cover") + compare(gold_path("annotate/encodings"), ".", "*,cover") def test_white(self): self.make_file("white.py", """\ @@ -103,4 +103,4 @@ class AnnotationGoldTest1(CoverageTest): cov = coverage.Coverage() self.start_import_stop(cov, "white") cov.annotate() - compare(gold_path("annotate/gold"), ".", "*,cover") + compare(gold_path("annotate/annotate"), ".", "*,cover") |