diff options
author | Özgür Kesim <oec-taler@kesim.org> | 2023-07-10 10:22:29 +0200 |
---|---|---|
committer | Özgür Kesim <oec-taler@kesim.org> | 2023-07-10 10:22:29 +0200 |
commit | 9d706a01a23e36e1c349d06e7a1be8bb44b7f0d5 (patch) | |
tree | 1ac7596f8921d476c5e0e9d7dfc64e28a6b64161 /src/testing/testing_api_cmd_wire_del.c | |
parent | 7e9f5324b719338d790a5eb18c209469d33c708a (diff) |
added expected HTTP-code to logger
Diffstat (limited to 'src/testing/testing_api_cmd_wire_del.c')
-rw-r--r-- | src/testing/testing_api_cmd_wire_del.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testing/testing_api_cmd_wire_del.c b/src/testing/testing_api_cmd_wire_del.c index 61405e6e..50ebfc7c 100644 --- a/src/testing/testing_api_cmd_wire_del.c +++ b/src/testing/testing_api_cmd_wire_del.c @@ -80,7 +80,9 @@ wire_del_cb (void *cls, if (ds->expected_response_code != hr->http_status) { TALER_TESTING_unexpected_status (ds->is, - hr->http_status); + hr->http_status, + ds->expected_response_code); + return; } TALER_TESTING_interpreter_next (ds->is); |