From 5f0fc27fea2fc7b32e6b088959602624ea8ec72c Mon Sep 17 00:00:00 2001 From: Raneet Debnath Date: Thu, 17 Nov 2022 12:02:00 +0530 Subject: [PATCH] fix --- integration-tests/smoke_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/smoke_test.sh b/integration-tests/smoke_test.sh index d3e422eefe..4105057c50 100644 --- a/integration-tests/smoke_test.sh +++ b/integration-tests/smoke_test.sh @@ -24,7 +24,7 @@ do #exit 1 else echo "State Sync occured!" - $count=$count+1 + count=$((count+1)) fi checkpointID=$(curl -sL http://localhost:1317/checkpoints/latest | jq .result.id) @@ -34,7 +34,7 @@ do #exit 1 else echo "Found checkpoint ID:" $checkpointID - $count=$count+1 + count=$((count+1)) fi if [ $count -eq 2 ]; then