diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-07-27 12:17:21 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-07-27 12:27:42 +0900 |
| commit | a1e5f020f48a65138c900961f856cf6b04833770 (patch) | |
| tree | 42d6e0a6d592463890c51639cacbcf014336b31b /helper | |
| parent | bd3fa53a552242b9d45a6743f16c31a8a2dca8ef (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.go | 2 |
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) |
