diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-15 06:46:34 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-15 06:52:18 -0500 |
commit | 6f66ab7c6f7ee256c3a9ba253d1b640129db7d72 (patch) | |
tree | 33fde9f2bdb3dfc1374d122d47d7c116287e26d4 /tests/test_annotate.py | |
parent | 4826d7cd3324ccfd6537bd4dac8a156ec5746bac (diff) | |
download | python-coveragepy-git-6f66ab7c6f7ee256c3a9ba253d1b640129db7d72.tar.gz |
Remove needless notices
Diffstat (limited to 'tests/test_annotate.py')
-rw-r--r-- | tests/test_annotate.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/test_annotate.py b/tests/test_annotate.py index 634c1c14..5b275f93 100644 --- a/tests/test_annotate.py +++ b/tests/test_annotate.py @@ -14,9 +14,6 @@ class AnnotationGoldTest1(CoverageTest): def make_multi(self): self.make_file("multi.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 - import a.a import b.b @@ -25,9 +22,6 @@ class AnnotationGoldTest1(CoverageTest): """) self.make_file("a/__init__.py") self.make_file("a/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 - def a(x): if x == 1: print("x is 1") @@ -36,9 +30,6 @@ class AnnotationGoldTest1(CoverageTest): """) self.make_file("b/__init__.py") self.make_file("b/b.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 - def b(x): msg = "x is %s" % x print(msg) @@ -63,9 +54,6 @@ class AnnotationGoldTest1(CoverageTest): def test_encoding(self): self.make_file("utf8.py", """\ # -*- coding: utf-8 -*- - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - # This comment has an accent: é print("spam eggs") @@ -77,9 +65,6 @@ class AnnotationGoldTest1(CoverageTest): def test_white(self): self.make_file("white.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 case sent to me by Steve White def f(self): |