libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit a15a8e31217b96bed6b3d3cb8e4ba16030aac003
parent 0b3de446d10454cbb58953d8258f2cb5fe618258
Author: MS <ms@taler.net>
Date:   Tue, 31 Jan 2023 17:17:39 +0100

test logging

Diffstat:
Mcli/tests/debit_test.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cli/tests/debit_test.sh b/cli/tests/debit_test.sh @@ -50,7 +50,7 @@ echo -n "Try to surpass the debit threshold (user pays admin)..." --amount MANA:99999 &> /dev/null || true echo DONE -echo -n Check the amount is zero... +echo -n Check the amount is still the initial zero... RESP=$(libeufin-cli sandbox --sandbox-url http://localhost:5000/ demobank info --bank-account www) BALANCE=$(echo $RESP | jq -r '.balance.amount') if [ "$BALANCE" != "MANA:0" ]; then @@ -67,7 +67,7 @@ libeufin-sandbox \ MANA:9999 "Go debit again." &> /dev/null || true echo DONE -echo -n Check the amount is again zero... +echo -n Check the amount is still the initial zero... RESP=$(libeufin-cli sandbox --sandbox-url http://localhost:5000/ demobank info --bank-account www) BALANCE=$(echo $RESP | jq -r '.balance.amount') if [ "$BALANCE" != "MANA:0" ]; then