From 765625d58c3cf879dd9b761391e613b11f0120bc Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 11 Nov 2020 12:59:14 -0800 Subject: [PATCH] Fix typo --- .../certbot_integration_tests/certbot_tests/assertions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py b/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py index c03d63e22..c223d524c 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py @@ -41,7 +41,7 @@ def assert_rsa_key(key): Asserts that the key at the given path is an RSA key. :param key: path to key """ - with open(filename, 'rb') as file: + with open(key, 'rb') as file: privkey1 = file.read() key = load_pem_private_key(data=privkey1, password=None, backend=default_backend())