diff options
Diffstat (limited to 'api/tests/gathered_zblocks.sh')
-rwxr-xr-x | api/tests/gathered_zblocks.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/api/tests/gathered_zblocks.sh b/api/tests/gathered_zblocks.sh index 3e38ccc..273f968 100755 --- a/api/tests/gathered_zblocks.sh +++ b/api/tests/gathered_zblocks.sh @@ -1,11 +1,11 @@ -#!/bin/bash +#!/usr/bin/env bash # PROGRAM="$(basename $0)" printf '[%s]\n' "$PROGRAM" printf "TEST\t/see\n" printf "\t01:\tOutput is valid JSON format..." -curl http://127.0.0.1:8610/v0/see 2>/dev/null | jq > /dev/null +curl -s http://127.0.0.1:8610/v0/see 2>/dev/null | jq > /dev/null if [ $? -eq 0 ] then printf "\t\t\033[0;32mPASSED\033[0;0m" @@ -15,7 +15,7 @@ fi printf "\n" printf "\t02:\tFound blocks inside response..." -curl http://127.0.0.1:8610/v0/see 2>/dev/null | grep block > /dev/null +curl -s http://127.0.0.1:8610/v0/see 2>/dev/null | grep block > /dev/null if [ $? -eq 0 ] then printf "\t\t\033[0;32mPASSED\033[0;0m" |