There was an error while loading. Please reload this page.
1 parent f1fdf27 commit a94041cCopy full SHA for a94041c
1 file changed
deploy/docker/tests/test_security_container_posture.py
@@ -67,8 +67,8 @@ def test_playwright_headless_shell_is_copied_to_runtime_cache(self, dockerfile):
67
re.DOTALL,
68
)
69
assert cache_copy, "Dockerfile must copy Playwright artifacts into appuser's cache"
70
- assert "chromium-*" in cache_copy.group("commands")
71
- assert "chromium_headless_shell-*" in cache_copy.group("commands")
+ assert "chromium-*" in cache_copy.group("artifacts")
+ assert "chromium_headless_shell-*" in cache_copy.group("artifacts")
72
73
def test_runs_as_non_root(self, dockerfile):
74
assert re.search(r"^USER\s+appuser", dockerfile, re.MULTILINE)
0 commit comments