diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/testing_auditor_api_helpers.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/testing_auditor_api_helpers.c b/src/lib/testing_auditor_api_helpers.c index fd9de3537..4bbfc51d1 100644 --- a/src/lib/testing_auditor_api_helpers.c +++ b/src/lib/testing_auditor_api_helpers.c @@ -113,7 +113,12 @@ auditor_version_cb { struct TALER_TESTING_Interpreter *is = cls; - /* TODO: check vi/compat? */ + if (TALER_AUDITOR_VC_MATCH != compat) + { + TALER_TESTING_interpreter_fail (is); + return; + } + is->auditor_working = GNUNET_YES; } |