diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-02-21 14:26:56 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-02-21 14:26:56 +0100 |
commit | 3bc489230385fcc322fd17d745846e23613361a8 (patch) | |
tree | af975af775630d80581144fa13a25a9c1a9c29f5 /src | |
parent | 243045a63fac366ca9c3cb8f97220b76249a8f51 (diff) |
-fix test FTBFS
Diffstat (limited to 'src')
-rw-r--r-- | src/backenddb/test_merchantdb.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/backenddb/test_merchantdb.c b/src/backenddb/test_merchantdb.c index 82710fe4..6a5c9cb7 100644 --- a/src/backenddb/test_merchantdb.c +++ b/src/backenddb/test_merchantdb.c @@ -1396,9 +1396,7 @@ test_lookup_order (const struct InstanceData *instance, order->id, &ct, &oh, - &lookup_terms, - NULL, - 0)) + &lookup_terms)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Lookup order failed\n"); @@ -1656,9 +1654,7 @@ test_insert_contract_terms (const struct InstanceData *instance, instance->instance.id, order->id, order->contract, - &os, - NULL, - 0), + &os), "Insert contract terms failed\n"); return 0; } @@ -1709,9 +1705,7 @@ test_lookup_contract_terms (const struct InstanceData *instance, &contract, &order_serial, &paid, - NULL, - NULL, - 0)) + NULL)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Lookup contract terms failed\n"); |