From 67a21121fdafa0d20165b0c42b8a3025c1e037a7 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 3 Mar 2020 08:57:52 -0800 Subject: [PATCH] flip bool --- .../certbot_integration_tests/certbot_tests/test_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py index 8e4f11381..f0c5edd3f 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py @@ -603,12 +603,12 @@ def test_ocsp_renew(context): # Test that "certbot renew" does not renew the certificate assert_cert_count_for_lineage(context.config_dir, certname, 1) - context.certbot(['renew'], force_renew=True) + context.certbot(['renew'], force_renew=False) assert_cert_count_for_lineage(context.config_dir, certname, 1) # Revoke the certificate and test that it does renew the certificate context.certbot(['revoke', '--cert-name', certname, '--no-delete-after-revoke']) - context.certbot(['renew'], force_renew=True) + context.certbot(['renew'], force_renew=False) assert_cert_count_for_lineage(context.config_dir, certname, 2)