From 11611fd23e106c211484af280b218da3ea8415b9 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Thu, 18 Feb 2021 10:32:04 +0100 Subject: [PATCH] fix is_auth_lmdb() --- regression-tests.api/test_helper.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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' -- 2.47.2