lint and format fixes

This commit is contained in:
David Asamu
2025-07-23 15:39:34 +01:00
parent ec0a30008c
commit 40fa69f8ee
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -571,9 +571,9 @@ def test_build_generate_proper_build_context():
build_context_pattern = re.compile(r"--build-context\s+(\w+)=([^\s]+)")
build_contexts = re.findall(build_context_pattern, result.output)
assert (
len(build_contexts) == 2
), f"Expected 2 build contexts, but found {len(build_contexts)}"
assert len(build_contexts) == 2, (
f"Expected 2 build contexts, but found {len(build_contexts)}"
)
def test_dockerfile_command_with_api_version() -> None: