summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_delete_order.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing_api_cmd_delete_order.c')
-rw-r--r--src/testing/testing_api_cmd_delete_order.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/testing/testing_api_cmd_delete_order.c b/src/testing/testing_api_cmd_delete_order.c
index 7c1ddfff..163538ca 100644
--- a/src/testing/testing_api_cmd_delete_order.c
+++ b/src/testing/testing_api_cmd_delete_order.c
@@ -121,12 +121,13 @@ delete_order_run (void *cls,
struct DeleteOrderState *dos = cls;
dos->is = is;
- dos->odh = TALER_MERCHANT_order_delete (is->ctx,
- dos->merchant_url,
- dos->order_id,
- false, /* FIXME: support testing force... */
- &delete_order_cb,
- dos);
+ dos->odh = TALER_MERCHANT_order_delete (
+ TALER_TESTING_interpreter_get_context (is),
+ dos->merchant_url,
+ dos->order_id,
+ false, /* FIXME: support testing force... */
+ &delete_order_cb,
+ dos);
GNUNET_assert (NULL != dos->odh);
}