From 07b566071bf42e41b2436eae1fbc04cf6e1fdc5d Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Fri, 3 Feb 2023 16:11:15 -0100 Subject: [PATCH] supress output --- tests/nym-mixnode-binary-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nym-mixnode-binary-check.sh b/tests/nym-mixnode-binary-check.sh index d4d955c566..35c2a5b9a2 100755 --- a/tests/nym-mixnode-binary-check.sh +++ b/tests/nym-mixnode-binary-check.sh @@ -32,7 +32,7 @@ check_mixnode_binary_build() { if [ -f "$BINARY_NAME" ]; then echo "running init tests" # we wont use config env files for now - OUTPUT=$(./${BINARY_NAME} --output json init --id ${ID} --host ${MOCK_HOST} --wallet-address ${WALLET_ADDRESS_CONST}) + OUTPUT=$(./${BINARY_NAME} --output json init --id ${ID} --host ${MOCK_HOST} --wallet-address ${WALLET_ADDRESS_CONST} > /dev/null) # get jq values for things we can assert against # tidy this bit up - okay for first push