summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-07-31 14:08:29 +0100
committerGitHub <noreply@github.com>2021-07-31 14:08:29 +0100
commit793bf507359e08362fd81385b478376db9821f1c (patch)
treee2f4ff125aa3a7539db4e2f65954dded7cdf3753
parentf85f2d48c6aa5cfd39fee6b07279b99d30e9fc4f (diff)
downloadgitpython-793bf507359e08362fd81385b478376db9821f1c.tar.gz
Update test_refs.py
-rw-r--r--test/test_refs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_refs.py b/test/test_refs.py
index ab760a6f..f30d4bda 100644
--- a/test/test_refs.py
+++ b/test/test_refs.py
@@ -457,7 +457,7 @@ class TestRefs(TestBase):
self.assertRaises(OSError, SymbolicReference.create, rw_repo, symref_path, cur_head.reference.commit)
# it works if the new ref points to the same reference
- assert SymbolicReference.create(rw_repo, symref.path, symref.reference).path == symref.path # @NoEffect
+ SymbolicReference.create(rw_repo, symref.path, symref.reference).path == symref.path # @NoEffect
SymbolicReference.delete(rw_repo, symref)
# would raise if the symref wouldn't have been deletedpbl
symref = SymbolicReference.create(rw_repo, symref_path, cur_head.reference)