Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit 3401774

Browse files
committed
CI: "real workload" test finally fixed
1 parent 68fed82 commit 3401774

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/nancy_run_localhost_real_workload.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ output=$(
1515
--tmp-path $srcDir/tmp 2>&1
1616
)
1717

18-
if [[ $output =~ "Queries:[[:space:]]+1" ]]; then
18+
regex="Queries:[[:blank:]]*1"
19+
if [[ $output =~ $regex ]]; then
1920
echo -e "\e[36mOK\e[39m"
2021
else
2122
>&2 echo -e "\e[31mFAILED\e[39m"

0 commit comments

Comments
 (0)