summaryrefslogtreecommitdiff
path: root/test/test_remote.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-19 16:59:30 +0100
committerYobmod <yobmod@gmail.com>2021-07-19 16:59:30 +0100
commit454576254b873b7ebc45bb30846e5831dc2d8817 (patch)
tree853ad35953091faf2b0380793166fc420f1de102 /test/test_remote.py
parent6609ef7c3b5bb840dba8d0a5362e67746761a437 (diff)
downloadgitpython-454576254b873b7ebc45bb30846e5831dc2d8817.tar.gz
rmv python 3.5 checks from tests
Diffstat (limited to 'test/test_remote.py')
-rw-r--r--test/test_remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_remote.py b/test/test_remote.py
index fb7d23c6..c29fac65 100644
--- a/test/test_remote.py
+++ b/test/test_remote.py
@@ -347,7 +347,7 @@ class TestRemote(TestBase):
progress = TestRemoteProgress()
to_be_updated = "my_tag.1.0RV"
new_tag = TagReference.create(rw_repo, to_be_updated) # @UnusedVariable
- other_tag = TagReference.create(rw_repo, "my_obj_tag.2.1aRV", message="my message")
+ other_tag = TagReference.create(rw_repo, "my_obj_tag.2.1aRV", logmsg="my message")
res = remote.push(progress=progress, tags=True)
self.assertTrue(res[-1].flags & PushInfo.NEW_TAG)
progress.make_assertion()
@@ -355,7 +355,7 @@ class TestRemote(TestBase):
# update push new tags
# Rejection is default
- new_tag = TagReference.create(rw_repo, to_be_updated, ref='HEAD~1', force=True)
+ new_tag = TagReference.create(rw_repo, to_be_updated, reference='HEAD~1', force=True)
res = remote.push(tags=True)
self._do_test_push_result(res, remote)
self.assertTrue(res[-1].flags & PushInfo.REJECTED)