fix linting
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2023-07-30 22:57:58 +02:00
parent a1ef224434
commit c547ace503
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 5 additions and 1 deletions

View File

@ -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