We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1ad9b commit 60d6662Copy full SHA for 60d6662
1 file changed
tests/unit/_internal/container/test_generate.py
@@ -36,6 +36,4 @@ def test_generate_containerfile_cache_mounts_use_sharing_locked(tmp_path) -> Non
36
cache_mounts = re.findall(r"--mount=type=cache[^ ]+", dockerfile)
37
assert len(cache_mounts) > 0, "expected at least one cache mount"
38
for mount in cache_mounts:
39
- assert "sharing=locked" in mount, (
40
- f"cache mount missing sharing=locked: {mount}"
41
- )
+ assert "sharing=locked" in mount, f"cache mount missing sharing=locked: {mount}"
0 commit comments