summaryrefslogtreecommitdiff
path: root/git/test
diff options
context:
space:
mode:
authorJames E. King III <jking@apache.org>2019-05-05 15:04:31 -0400
committerJames E. King III <jking@apache.org>2019-05-05 16:19:32 -0400
commit11fd713f77bb0bc817ff3c17215fd7961c025d7e (patch)
tree2072cdfd9f4cf4de2f540e84749bc46ca9e9eecc /git/test
parent52ee33ac9b234c7501d97b4c2bf2e2035c5ec1fa (diff)
downloadgitpython-11fd713f77bb0bc817ff3c17215fd7961c025d7e.tar.gz
Resolve test incompatibility with git v2.21.0
This fixes #869
Diffstat (limited to 'git/test')
-rw-r--r--git/test/test_remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py
index f3a214cb..99949b9e 100644
--- a/git/test/test_remote.py
+++ b/git/test/test_remote.py
@@ -638,7 +638,7 @@ class TestRemote(TestBase):
def test_fetch_error(self):
rem = self.rorepo.remote('origin')
- with self.assertRaisesRegex(GitCommandError, "Couldn't find remote ref __BAD_REF__"):
+ with self.assertRaisesRegex(GitCommandError, "[Cc]ouldn't find remote ref __BAD_REF__"):
rem.fetch('__BAD_REF__')
@with_rw_repo('0.1.6', bare=False)