diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-11-11 16:59:13 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-11-11 16:59:13 +0100 |
commit | bbb7277a581193d6a335fe975c80a2bb75d8a6a7 (patch) | |
tree | 81508aeca3657ccbe1964d4c2862f25d1913f0f9 | |
parent | 6bdf1bc968124a32c932b75579ab6078ea6898cc (diff) |
fix use of test without existing DB
-rw-r--r-- | src/auditordb/test_auditordb.c | 2 | ||||
-rw-r--r-- | src/auditordb/test_auditordb_checkpoints.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/auditordb/test_auditordb.c b/src/auditordb/test_auditordb.c index aaee64857..c8583add8 100644 --- a/src/auditordb/test_auditordb.c +++ b/src/auditordb/test_auditordb.c @@ -200,7 +200,7 @@ run (void *cls) if (NULL == (plugin = TALER_AUDITORDB_plugin_load (cfg, - false))) + true))) { result = 77; return; diff --git a/src/auditordb/test_auditordb_checkpoints.c b/src/auditordb/test_auditordb_checkpoints.c index 90225d65c..bf7c6efb1 100644 --- a/src/auditordb/test_auditordb_checkpoints.c +++ b/src/auditordb/test_auditordb_checkpoints.c @@ -90,7 +90,7 @@ run (void *cls) "loading database plugin\n"); if (NULL == (plugin = TALER_AUDITORDB_plugin_load (cfg, - false))) + true))) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Failed to connect to database\n"); |