From de84688844196915134eda2d3bb09f00f3bfb5e7 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Fri, 12 Apr 2019 14:08:45 -0700 Subject: [PATCH] Remove slash from path. (#6957) --- certbot-ci/certbot_integration_tests/certbot_tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 700e6d514..7320128de 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py @@ -76,7 +76,7 @@ def test_renew_files_permissions(context): assert_cert_count_for_lineage(context.config_dir, certname, 2) assert_world_permissions( - join(context.config_dir, 'archive', certname, '/privkey2.pem'), 0) + join(context.config_dir, 'archive', certname, 'privkey2.pem'), 0) assert_equals_group_owner( join(context.config_dir, 'archive', certname, 'privkey1.pem'), join(context.config_dir, 'archive', certname, 'privkey2.pem'))