summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-09-05 11:41:56 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-09-05 11:41:56 +0200
commitd7faa8391578b53ad12b5d904f844fcd57f2a6f7 (patch)
treeff017789b9c8ebba527e2f73b909c1bce96e19c0 /src
parent5fa4a0e7e1c40bb07e28edc98ca2072ae7fcfacf (diff)
downloadexchange-d7faa8391578b53ad12b5d904f844fcd57f2a6f7.tar.gz
exchange-d7faa8391578b53ad12b5d904f844fcd57f2a6f7.tar.bz2
exchange-d7faa8391578b53ad12b5d904f844fcd57f2a6f7.zip
fix tests
Diffstat (limited to 'src')
-rw-r--r--src/auditordb/plugin_auditordb_postgres.c2
-rw-r--r--src/wire-plugins/test_wire_plugin_transactions_taler-bank.c10
2 files changed, 2 insertions, 10 deletions
diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c
index df357fa5a..863e20582 100644
--- a/src/auditordb/plugin_auditordb_postgres.c
+++ b/src/auditordb/plugin_auditordb_postgres.c
@@ -189,6 +189,8 @@ postgres_drop_tables (void *cls,
"DROP TABLE IF EXISTS wire_auditor_account_progress;"),
GNUNET_PQ_make_execute (
"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
};
struct GNUNET_PQ_ExecuteStatement esx[] = {
diff --git a/src/wire-plugins/test_wire_plugin_transactions_taler-bank.c b/src/wire-plugins/test_wire_plugin_transactions_taler-bank.c
index 3d7fa76e0..2cda49a05 100644
--- a/src/wire-plugins/test_wire_plugin_transactions_taler-bank.c
+++ b/src/wire-plugins/test_wire_plugin_transactions_taler-bank.c
@@ -274,16 +274,6 @@ confirmation_cb (void *cls,
5,
&history_result_cb,
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)));
}