summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/cli_test_v4.sh6
-rw-r--r--tools/python_test_v4.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/cli_test_v4.sh b/tools/cli_test_v4.sh
index 395289a..ac43837 100755
--- a/tools/cli_test_v4.sh
+++ b/tools/cli_test_v4.sh
@@ -113,11 +113,11 @@ testcase "revert commit" '
--id "$COMMIT_ID" --branch master
'
-# Test commit GPG signature
-testcase "attempt to get GPG signature of unsigned commit" '
+# Test commit signature
+testcase "attempt to get signature of unsigned commit" '
OUTPUT=$(GITLAB project-commit signature --project-id "$PROJECT_ID" \
--id "$COMMIT_ID" 2>&1 || exit 0)
- echo "$OUTPUT" | grep -q "404 GPG Signature Not Found"
+ echo "$OUTPUT" | grep -q "404 Signature Not Found"
'
# Test project labels
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"})