From 68b0621b1913873af107cb1f6bf18022046832d5 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 27 May 2021 11:18:13 -0700 Subject: [PATCH] rename variable --- .../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 78f5c7408..965e4b6d8 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py @@ -688,9 +688,9 @@ def test_ocsp_status_stale(context): stdout, _ = context.certbot(['certificates', '--config-dir', sample_data_path]) assert stdout.count('TEST_CERT') == 2, ('Did not find two test certs as expected ({0})' - .format(output.count('TEST_CERT'))) + .format(stdout.count('TEST_CERT'))) assert stdout.count('EXPIRED') == 2, ('Did not find two expired certs as expected ({0})' - .format(output.count('EXPIRED'))) + .format(stdout.count('EXPIRED'))) def test_ocsp_status_live(context):