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_files.py | |
parent | 804d88e30073e4b04ed61ffcd6daa8614f534d69 (diff) | |
download | python-coveragepy-git-7cf317f4c0e25acf671e4d633a93d7648d5d219e.tar.gz |
More bitbucket->github urls
Diffstat (limited to 'tests/test_files.py')
-rw-r--r-- | tests/test_files.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index 1aeacb51..a84ef61d 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -47,7 +47,7 @@ class FilesTest(CoverageTest): self.assertEqual(files.relative_filename(a2), a2) def test_filepath_contains_absolute_prefix_twice(self): - # https://bitbucket.org/ned/coveragepy/issue/194 + # https://github.com/nedbat/coveragepy/issues/194 # Build a path that has two pieces matching the absolute path prefix. # Technically, this test doesn't do that on Windows, but drive # letters make that impractical to achieve. @@ -309,7 +309,7 @@ class PathAliasesTest(CoverageTest): self.assert_mapped(aliases, r'/home/ned/foo/src/sub/a.py', r'.\mysrc\sub\a.py') def test_windows_on_linux(self): - # https://bitbucket.org/ned/coveragepy/issues/618/problem-when-combining-windows-generated + # https://github.com/nedbat/coveragepy/issues/618 lin = "*/project/module/" win = "*\\project\\module\\" @@ -325,7 +325,7 @@ class PathAliasesTest(CoverageTest): ) def test_linux_on_windows(self): - # https://bitbucket.org/ned/coveragepy/issues/618/problem-when-combining-windows-generated + # https://github.com/nedbat/coveragepy/issues/618 lin = "*/project/module/" win = "*\\project\\module\\" |