From: Peter van Dijk Date: Thu, 18 Feb 2021 09:32:04 +0000 (+0100) Subject: fix is_auth_lmdb() X-Git-Tag: dnsdist-1.6.0-alpha2~23^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11611fd23e106c211484af280b218da3ea8415b9;p=thirdparty%2Fpdns.git fix is_auth_lmdb() --- diff --git a/regression-tests.api/test_helper.py b/regression-tests.api/test_helper.py index b401268b4d..90809b0c25 100644 --- a/regression-tests.api/test_helper.py +++ b/regression-tests.api/test_helper.py @@ -73,8 +73,7 @@ def is_auth(): return DAEMON == 'authoritative' def is_auth_lmdb(): - print('BACKEND=', BACKEND) - return DAEMON == 'authoritative' + return DAEMON == 'authoritative' and BACKEND == 'lmdb' def is_recursor(): return DAEMON == 'recursor'