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_xml.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_xml.py')
-rw-r--r-- | tests/test_xml.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_xml.py b/tests/test_xml.py index f73728fc..185e6ad1 100644 --- a/tests/test_xml.py +++ b/tests/test_xml.py @@ -337,7 +337,7 @@ class XmlGoldTest(CoverageTest): cov = coverage.Coverage() a = self.start_import_stop(cov, "a") cov.xml_report(a, outfile="coverage.xml") - compare_xml(gold_path("html/gold_x_xml"), ".", actual_extra=True) + compare_xml(gold_path("xml/x_xml"), ".", actual_extra=True) def test_a_xml_2(self): self.make_file("a.py", """\ @@ -357,7 +357,7 @@ class XmlGoldTest(CoverageTest): cov = coverage.Coverage(config_file="run_a_xml_2.ini") a = self.start_import_stop(cov, "a") cov.xml_report(a) - compare_xml(gold_path("html/gold_x_xml"), "xml_2") + compare_xml(gold_path("xml/x_xml"), "xml_2") def test_y_xml_branch(self): self.make_file("y.py", """\ @@ -373,4 +373,4 @@ class XmlGoldTest(CoverageTest): cov = coverage.Coverage(branch=True) y = self.start_import_stop(cov, "y") cov.xml_report(y, outfile="y_xml_branch/coverage.xml") - compare_xml(gold_path("html/gold_y_xml_branch"), "y_xml_branch") + compare_xml(gold_path("xml/y_xml_branch"), "y_xml_branch") |