From c547ace503844a6c290746127df72114b33dc7cd Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 30 Jul 2023 22:57:58 +0200 Subject: [PATCH] fix linting --- molecule/rocky9/tests/test_default.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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