aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/container_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'helper/container_test.go')
-rw-r--r--helper/container_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper/container_test.go b/helper/container_test.go
index 2d1c256c..9aaeec8e 100644
--- a/helper/container_test.go
+++ b/helper/container_test.go
@@ -11,10 +11,10 @@ import (
)
func TestContainer(t *testing.T) {
- t.Run("start empty container", func(t *testing.T) {
+ t.Run("start invalid container", func(t *testing.T) {
h := helper.New(t.Context(), container.MustAbs(container.Nonexistent), "hakurei", argsWt, false, argF, nil, nil)
- wantErr := "container: starting an empty container"
+ wantErr := "container: starting an invalid container"
if err := h.Start(); err == nil || err.Error() != wantErr {
t.Errorf("Start: error = %v, wantErr %q",
err, wantErr)