From b8fef70bf57f2aad5749d1b88f33a5fced14b7fc Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Thu, 14 May 2015 12:12:26 -0700 Subject: [PATCH] Making clear that other files don't actually exist --- letsencrypt/tests/renewer_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/letsencrypt/tests/renewer_test.py b/letsencrypt/tests/renewer_test.py index 6fdd280c3..54c269da7 100644 --- a/letsencrypt/tests/renewer_test.py +++ b/letsencrypt/tests/renewer_test.py @@ -93,11 +93,11 @@ class RenewableCertTests(unittest.TestCase): from letsencrypt import storage defaults = configobj.ConfigObj() config = configobj.ConfigObj() - config["cert"] = "/tmp/cert.pem" + config["cert"] = "imaginary_cert.pem" # Here the required privkey is missing. - config["chain"] = "/tmp/chain.pem" - config["fullchain"] = "/tmp/fullchain.pem" - config.filename = "/tmp/genuineconfig.conf" + config["chain"] = "imaginary_chain.pem" + config["fullchain"] = "imaginary_fullchain.pem" + config.filename = "imaginary_config.conf" self.assertRaises(ValueError, storage.RenewableCert, config, defaults) def test_consistent(self): # pylint: disable=too-many-statements