From 2a3ed206cbff6d185f7d55186c4e755de173535b Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 20 Apr 2020 23:45:34 +0200 Subject: [PATCH] try to fix certbot path --- molecule/centos7/tests/test_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/centos7/tests/test_default.py b/molecule/centos7/tests/test_default.py index 7927d55..481f8cd 100644 --- a/molecule/centos7/tests/test_default.py +++ b/molecule/centos7/tests/test_default.py @@ -15,6 +15,6 @@ def test_certbot_is_installed(host): def test_certbot_run(host): - cmd = host.run("certbot --help") + cmd = host.run("~/.local/bin/certbot --help") assert "Certbot can obtain and install HTTPS/TLS/SSL certificates." in cmd.stdout assert cmd.succeeded