Fix fmt
This commit is contained in:
parent
78afd3ecb7
commit
3b5abde73d
1 changed files with 3 additions and 3 deletions
|
@ -14,9 +14,9 @@ def test(subtest, webserver):
|
|||
value = node.succeed(
|
||||
f"curl -s --no-location -o /dev/null -w '%{{{variable}}}' '{url}'"
|
||||
)
|
||||
assert (
|
||||
value == expected
|
||||
), f"expected {variable} to be '{expected}' but got '{value}'"
|
||||
assert value == expected, (
|
||||
f"expected {variable} to be '{expected}' but got '{value}'"
|
||||
)
|
||||
|
||||
def expect_http_code(node, code, url):
|
||||
curl_variable_test(node, "http_code", code, url)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue