diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-08-18 20:18:38 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-08-18 20:18:38 -0400 |
commit | 7cf317f4c0e25acf671e4d633a93d7648d5d219e (patch) | |
tree | b32d24e85b6435bcc91c61a2ccb983c90552c0c2 /tests/test_parser.py | |
parent | 804d88e30073e4b04ed61ffcd6daa8614f534d69 (diff) | |
download | python-coveragepy-git-7cf317f4c0e25acf671e4d633a93d7648d5d219e.tar.gz |
More bitbucket->github urls
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index a8da45cf..03bf25de 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -45,7 +45,7 @@ class PythonParserTest(CoverageTest): }) def test_generator_exit_counts(self): - # https://bitbucket.org/ned/coveragepy/issue/324/yield-in-loop-confuses-branch-coverage + # https://github.com/nedbat/coveragepy/issues/324 parser = self.parse_source("""\ def gen(input): for n in inp: @@ -453,7 +453,7 @@ class ParserFileTest(CoverageTest): def test_missing_line_ending(self): # Test that the set of statements is the same even if a final # multi-line statement has no final newline. - # https://bitbucket.org/ned/coveragepy/issue/293 + # https://github.com/nedbat/coveragepy/issues/293 self.make_file("normal.py", """\ out, err = subprocess.Popen( |