From 0b0e73401e462324a8db32b60c625f56ad639391 Mon Sep 17 00:00:00 2001 From: Tomas Kral Date: Fri, 20 Nov 2020 09:59:40 +0100 Subject: [PATCH] update springboot test to match udpated example (#61) --- scripts/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index 735cd30..e9cf7a1 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -151,10 +151,10 @@ test() { # - port number for which url will be created # - url path to check for response (usually "/") # - string that url response must contain to checking that application is running corect -test "java-maven" "https://github.com/odo-devfiles/springboot-ex.git" "8080" "/" "You are currently running a Spring server built for the IBM Cloud" +test "java-maven" "https://github.com/odo-devfiles/springboot-ex.git" "8080" "/" "Hello World!" test "java-openliberty" "https://github.com/OpenLiberty/application-stack-intro.git" "9080" "/api/resource" "Hello! Welcome to Open Liberty" test "java-quarkus" "https://github.com/odo-devfiles/quarkus-ex" "8080" "/" "Congratulations, you have created a new Quarkus application." -test "java-springboot" "https://github.com/odo-devfiles/springboot-ex.git" "8080" "/" "You are currently running a Spring server built for the IBM Cloud" +test "java-springboot" "https://github.com/odo-devfiles/springboot-ex.git" "8080" "/" "Hello World!" test "nodejs" "https://github.com/odo-devfiles/nodejs-ex.git" "3000" "/" "Hello from Node.js Starter Application!" test "python" "https://github.com/odo-devfiles/python-ex.git" "8080" "/" "Hello World!" test "python-django" "https://github.com/odo-devfiles/python-django-ex.git" "8000" "/" "The install worked successfully! Congratulations!"