merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 60dd54200942fba728fb13460ccc44d899a485a1
parent 292e27ff7d1119ce40aefbaae39c327132392db1
Author: Sebastian <sebasjm@gmail.com>
Date:   Thu,  2 Sep 2021 12:22:48 -0300

update test to fail

Signed-off-by: Sebastian <sebasjm@gmail.com>

Diffstat:
Msrc/testing/test_merchant_transfer_tracking.sh | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/testing/test_merchant_transfer_tracking.sh b/src/testing/test_merchant_transfer_tracking.sh @@ -175,8 +175,10 @@ export LAST_RESPONSE echo -n "Notifying merchant of correct wire transfer, but on wrong instance..." +#issue 6912 +#here we are notifying the transfer into a wrong instance (default) and the payto_uri with the default instance STATUS=$(curl 'http://localhost:9966/instances/default/private/transfers' \ - -d '{"credit_amount":"'$CREDIT_AMOUNT'","wtid":"'$WTID'","payto_uri":"'$TARGET_PAYTO'","exchange_url":"'$WURL'"}' \ + -d '{"credit_amount":"'$CREDIT_AMOUNT'","wtid":"'$WTID'","payto_uri":"payto://x-taler-bank/localhost:8082/Tor","exchange_url":"'$WURL'"}' \ -m 3 \ -w "%{http_code}" -s -o $LAST_RESPONSE)