diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-21 07:05:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-24 06:54:17 -0400 |
commit | aca3454584e7711a787f7f611837cca9c7d7c996 (patch) | |
tree | 0676949cfb26f6c7e88ed9b8f87495a56b3bbfce /tests/test_xml.py | |
parent | 074d8843c0d7909bbc6692f20cc056725d26041c (diff) | |
download | python-coveragepy-git-aca3454584e7711a787f7f611837cca9c7d7c996.tar.gz |
Remove some unneeded lines from the code-in-code xml tests
Diffstat (limited to 'tests/test_xml.py')
-rw-r--r-- | tests/test_xml.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/test_xml.py b/tests/test_xml.py index 3e219a48..dd2de007 100644 --- a/tests/test_xml.py +++ b/tests/test_xml.py @@ -317,11 +317,6 @@ class XmlGoldTest(CoverageTest): def test_a_xml_1(self): self.make_file("a.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - - # A test file for HTML reporting by coverage.py. - if 1 < 2: # Needed a < to look at HTML entities. a = 3 @@ -345,11 +340,6 @@ class XmlGoldTest(CoverageTest): def test_a_xml_2(self): self.make_file("a.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - - # A test file for HTML reporting by coverage.py. - if 1 < 2: # Needed a < to look at HTML entities. a = 3 @@ -379,11 +369,6 @@ class XmlGoldTest(CoverageTest): def test_y_xml_branch(self): self.make_file("y.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - - # A test file for XML reporting by coverage.py. - def choice(x): if x < 2: return 3 |