tests: Fix TW URL in the version.t test

This commit is contained in:
Tomas Babej 2021-03-17 22:05:27 -04:00
parent 339397f836
commit 60bce31df1
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5

View file

@ -75,7 +75,7 @@ class TestVersion(TestCase):
expected = "task {0}".format(self.slurp())
self.assertIn(expected, out)
self.assertIn("MIT license", out)
self.assertIn("http://taskwarrior.org", out)
self.assertIn("https://taskwarrior.org", out)
def slurp_git(self):
git_cmd = ("git", "rev-parse", "--short", "--verify", "HEAD")