fix tests

This commit is contained in:
Marcello Stanisci 2019-09-05 11:41:56 +02:00
parent 5fa4a0e7e1
commit d7faa83915
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F
2 changed files with 2 additions and 10 deletions

View File

@ -189,6 +189,8 @@ postgres_drop_tables (void *cls,
"DROP TABLE IF EXISTS wire_auditor_account_progress;"), "DROP TABLE IF EXISTS wire_auditor_account_progress;"),
GNUNET_PQ_make_execute ( GNUNET_PQ_make_execute (
"DROP TABLE IF EXISTS deposit_confirmations CASCADE;"), "DROP TABLE IF EXISTS deposit_confirmations CASCADE;"),
GNUNET_PQ_make_execute (
"DROP TABLE IF EXISTS auditor_historic_reserve_summary CASCADE;"),
GNUNET_PQ_EXECUTE_STATEMENT_END GNUNET_PQ_EXECUTE_STATEMENT_END
}; };
struct GNUNET_PQ_ExecuteStatement esx[] = { struct GNUNET_PQ_ExecuteStatement esx[] = {

View File

@ -274,16 +274,6 @@ confirmation_cb (void *cls,
5, 5,
&history_result_cb, &history_result_cb,
NULL); NULL);
GNUNET_assert
(NULL != (hhr = plugin->get_history_range
(plugin->cls,
my_account,
TALER_BANK_DIRECTION_BOTH,
GNUNET_TIME_UNIT_ZERO_ABS,
GNUNET_TIME_UNIT_FOREVER_ABS,
&history_result_cb,
NULL)));
} }