From ceee1f69d228fd238828f277e105efa83c42e588 Mon Sep 17 00:00:00 2001 From: Montana Date: Thu, 14 Mar 2019 13:46:52 -0400 Subject: [PATCH] Rely on fixture to change app config --- tests/domain/authnid/test_crl.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/domain/authnid/test_crl.py b/tests/domain/authnid/test_crl.py index 0b1c88fa..779e3c66 100644 --- a/tests/domain/authnid/test_crl.py +++ b/tests/domain/authnid/test_crl.py @@ -144,7 +144,6 @@ def test_no_op_crl_cache_logs_common_name(): def test_expired_crl_raises_CRLInvalidException_with_failover_config_false( app, ca_file, expired_crl_file, ca_key, make_x509, rsa_key ): - app.config.update({"CRL_FAIL_OPEN": False}) client_cert = make_x509(rsa_key(), signer_key=ca_key, cn="chewbacca") client_pem = client_cert.public_bytes(Encoding.PEM) crl_cache = CRLCache(ca_file, crl_locations=[expired_crl_file])