mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
flip bool
This commit is contained in:
parent
83c3aab4d5
commit
67a21121fd
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue