diff --git a/molecule/rocky9/tests/test_default.py b/molecule/rocky9/tests/test_default.py index cd05051..270fb41 100644 --- a/molecule/rocky9/tests/test_default.py +++ b/molecule/rocky9/tests/test_default.py @@ -19,6 +19,10 @@ def test_vault_socket(host): def test_vault_conn(host): - code = int(host.run("curl -s -w '%{http_code}' http://127.0.0.1:8200/v1/sys/health?standbyok=true -o /dev/null").stdout) # noqa + code = int( + host.run( + "curl -s -w '%{http_code}' http://127.0.0.1:8200/v1/sys/health?standbyok=true -o /dev/null" # noqa + ).stdout + ) assert code == 501