Skip to content

Commit

Permalink
Fix a test that still thought we were on bitbucket
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 9, 2019
1 parent 56e8fe1 commit bc2f00f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_metadata(self):
out = output.splitlines()
self.assertIn("measurement", out[0])
self.assertEqual(coverage.__version__, out[1])
self.assertIn("bitbucket.org/ned/coveragepy", out[2])
self.assertIn("github.com/nedbat/coveragepy", out[2])
self.assertIn("Ned Batchelder", out[3])

def test_more_metadata(self):
Expand Down

0 comments on commit bc2f00f

Please sign in to comment.