From 828d46bae94a7f7b2f5707024f5bc2bf3a4b7ba4 Mon Sep 17 00:00:00 2001 From: dandds Date: Thu, 21 Mar 2019 18:54:23 -0400 Subject: [PATCH] fix tests in CI with CRL config option --- tests/test_access.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_access.py b/tests/test_access.py index 3244795f..de28021e 100644 --- a/tests/test_access.py +++ b/tests/test_access.py @@ -49,7 +49,7 @@ def protected_routes(app): return _protected_routes -sample_config = make_config() +sample_config = make_config({"CRL_STORAGE_PROVIDER": "LOCAL"}) sample_app = make_app(sample_config) _PROTECTED_ROUTES = protected_routes(sample_app)