merchant

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

commit 3771bffae3b1aaaea0eda2a9943a68e909a3b1b4
parent cefa0559dd0e4c5d1203638f80a39137a300deb6
Author: priscilla <priscilla.huang@efrei.net>
Date:   Mon,  5 Dec 2022 07:31:59 -0500

update

Diffstat:
Msrc/include/taler_merchant_testing_lib.h | 4++--
Msrc/testing/Makefile.am | 3+++
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/include/taler_merchant_testing_lib.h b/src/include/taler_merchant_testing_lib.h @@ -1603,8 +1603,8 @@ TALER_TESTING_cmd_merchant_get_template (const char *label, * * @param label command label. * @param merchant_url base URL of the merchant serving the - * DELETE /products/$ID request. - * @param product_id the ID of the product to query + * DELETE /templates/$ID request. + * @param template_id the ID of the template to query * @param http_status expected HTTP response code. * @return the command. */ diff --git a/src/testing/Makefile.am b/src/testing/Makefile.am @@ -39,9 +39,11 @@ libtalermerchanttesting_la_SOURCES = \ testing_api_cmd_get_tips.c \ testing_api_cmd_get_transfers.c \ testing_api_cmd_get_templates.c \ + testing_api_cmd_get_template.c \ testing_api_cmd_delete_instance.c \ testing_api_cmd_delete_order.c \ testing_api_cmd_delete_product.c \ + testing_api_cmd_delete_template.c \ testing_api_cmd_delete_reserve.c \ testing_api_cmd_delete_transfer.c \ testing_api_cmd_forget_order.c \ @@ -60,6 +62,7 @@ libtalermerchanttesting_la_SOURCES = \ testing_api_cmd_post_templates.c \ testing_api_cmd_patch_instance.c \ testing_api_cmd_patch_product.c \ + testing_api_cmd_patch_template.c \ testing_api_cmd_refund_order.c \ \ testing_api_cmd_tip_authorize.c \