From e74e74a6cddcdfe67441db6fbdebdbde6e0b3935 Mon Sep 17 00:00:00 2001 From: Yang Chiu Date: Tue, 20 Aug 2024 12:40:34 +0800 Subject: [PATCH] test Signed-off-by: Yang Chiu --- .github/workflows/qase-sync.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qase-sync.yaml b/.github/workflows/qase-sync.yaml index aba1427298..54ef956897 100644 --- a/.github/workflows/qase-sync.yaml +++ b/.github/workflows/qase-sync.yaml @@ -114,7 +114,7 @@ jobs: --header "Token: ${token}" \ --header "accept: application/json" \ --header "content-type: application/json" \ - --data "{ \"description\": \"${description}\", \"title\": "${title}" }") + --data "{ \"description\": \"${description}\", \"title\": \"${title}\" }") echo "updated existing test case: ${res}" else @@ -132,7 +132,7 @@ jobs: --header "Token: ${token}" \ --header "accept: application/json" \ --header "content-type: application/json" \ - --data "{ \"description\": \"${description}\", \"title\": "${title}", \"suite_id\": \"${parent_suite_id}\" }") + --data "{ \"description\": \"${description}\", \"title\": \"${title}\", \"suite_id\": \"${parent_suite_id}\" }") echo "created new test case ${title}: ${res}" fi done