aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-27 12:17:21 +0900
committerOphestra <cat@gensokyo.uk>2025-07-27 12:27:42 +0900
commita1e5f020f48a65138c900961f856cf6b04833770 (patch)
tree42d6e0a6d592463890c51639cacbcf014336b31b /helper
parentbd3fa53a552242b9d45a6743f16c31a8a2dca8ef (diff)
container: improve doc comments
Putting them on the builder methods is more useful. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'helper')
-rw-r--r--helper/container_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/container_test.go b/helper/container_test.go
index f5dc1aaa..c5ad0659 100644
--- a/helper/container_test.go
+++ b/helper/container_test.go
@@ -14,7 +14,7 @@ func TestContainer(t *testing.T) {
t.Run("start empty container", func(t *testing.T) {
h := helper.New(t.Context(), container.Nonexistent, argsWt, false, argF, nil, nil)
- wantErr := "sandbox: starting an empty container"
+ wantErr := "container: starting an empty container"
if err := h.Start(); err == nil || err.Error() != wantErr {
t.Errorf("Start: error = %v, wantErr %q",
err, wantErr)