From 1106c5fccf88c3780b5b311864f52ba72f392160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oddbj=C3=B8rn=20Gr=C3=B8dem?= <29732646+oddgrd@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:46:30 +0200 Subject: [PATCH] fix: wasm qa casing (#828) --- .circleci/qa-wasm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/qa-wasm.sh b/.circleci/qa-wasm.sh index 0488d7545..ef07dd25e 100755 --- a/.circleci/qa-wasm.sh +++ b/.circleci/qa-wasm.sh @@ -17,6 +17,6 @@ sleep 70 echo "Testing local wasm endpoint" output=$(curl --silent localhost:8000/hello) -[ "$output" != "Hello, world!" ] && ( echo "Did not expect output: $output"; exit 1 ) +[ "$output" != "Hello, World!" ] && ( echo "Did not expect output: $output"; exit 1 ) killall cargo-shuttle