summaryrefslogtreecommitdiff
path: root/tools/python_test_v4.py
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2020-04-23 09:26:08 +0200
committerGitHub <noreply@github.com>2020-04-23 09:26:08 +0200
commit5a753105d95859854e52adc2575a9a51d43c341c (patch)
tree0c6481f5dd5ae21b9800402b9c933915e17a6f35 /tools/python_test_v4.py
parent9d66cb3ccc8d9edac68380b4b8ff285a9782e698 (diff)
parente6c9fe920df43ae2ab13f26310213e8e4db6b415 (diff)
downloadgitlab-5a753105d95859854e52adc2575a9a51d43c341c.tar.gz
Merge pull request #1082 from python-gitlab/chore/signature-gpg-x509
chore: bring commit signatures up to date with 12.10
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r--tools/python_test_v4.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py
index 7145bc1..7276e6e 100644
--- a/tools/python_test_v4.py
+++ b/tools/python_test_v4.py
@@ -500,13 +500,13 @@ commit = admin_project.commits.list()[0]
# assert commit.refs()
# assert commit.merge_requests()
-# commit GPG signature (for unsigned commits)
+# commit signature (for unsigned commits)
# TODO: reasonable tests for signed commits?
try:
signature = commit.signature()
except gitlab.GitlabGetError as e:
error_message = e.error_message
-assert error_message == "404 GPG Signature Not Found"
+assert error_message == "404 Signature Not Found"
# commit comment
commit.comments.create({"note": "This is a commit comment"})