Fix formatting #80

Merged
fabianhauser merged 1 commit from fix-formatting into main 2025-06-25 23:09:24 +02:00

View file

@ -14,9 +14,9 @@ def test(subtest, webserver):
value = node.succeed( value = node.succeed(
f"curl -s --no-location -o /dev/null -w '%{{{variable}}}' '{url}'" f"curl -s --no-location -o /dev/null -w '%{{{variable}}}' '{url}'"
) )
assert value == expected, ( assert (
f"expected {variable} to be '{expected}' but got '{value}'" value == expected
) ), f"expected {variable} to be '{expected}' but got '{value}'"
def expect_http_code(node, code, url): def expect_http_code(node, code, url):
curl_variable_test(node, "http_code", code, url) curl_variable_test(node, "http_code", code, url)