From 1a884bd75a9f8ff847a83705039148a79ab9cb38 Mon Sep 17 00:00:00 2001 From: "claude[bot]" Date: Wed, 18 Feb 2026 19:35:49 +0000 Subject: [PATCH] fix: correct ensure_nested_container doc comment to match actual behavior MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The doc said "Skips the build if another process already built the image" but the code always runs podman build (relying on layer caching). Updated to accurately describe the behavior. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- tests/common/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 2951293d..4d4b78c7 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -1045,7 +1045,7 @@ pub async fn ensure_nested_image() -> anyhow::Result<()> { /// Build a container image for nested testing, serialized via file lock. /// /// Uses an exclusive file lock to prevent concurrent builds from racing on -/// overlay unmount. Skips the build if another process already built the image. +/// overlay unmount. Redundant builds are fast due to podman's layer caching. /// If the container extends localhost/nested-test, call ensure_nested_image() first. /// /// # Arguments