From 76d06dc4d571d111a9f61076c5eaf3320242338a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Thu, 20 Jun 2019 16:36:21 +0200 Subject: [PATCH] WiP --- testcase-02/Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testcase-02/Jenkinsfile b/testcase-02/Jenkinsfile index 32fa604..844a49d 100644 --- a/testcase-02/Jenkinsfile +++ b/testcase-02/Jenkinsfile @@ -58,9 +58,9 @@ node() { sandbox_endpoint: service.environment.stagingPublicBaseURL ] sh """set -e +x - curl -f -k -w "ListBeers: %{http_code}\n" -o /dev/null -s ${proxy.sandbox_endpoint}/api/beer - curl -f -k -w "GetBeer: %{http_code}\n" -o /dev/null -s ${proxy.sandbox_endpoint}/api/beer/Weissbier - curl -f -k -w "FindBeersByStatus: %{http_code}\n" -o /dev/null -s ${proxy.sandbox_endpoint}/api/beer/findByStatus/available + curl -f -k -w "ListBeers: %{http_code}\n" -o /dev/null -s ${proxy.sandbox_endpoint}/beer + curl -f -k -w "GetBeer: %{http_code}\n" -o /dev/null -s ${proxy.sandbox_endpoint}/beer/Weissbier + curl -f -k -w "FindBeersByStatus: %{http_code}\n" -o /dev/null -s ${proxy.sandbox_endpoint}/beer/findByStatus/available """ }