From 33d3246a37474fa9ac8c7ed9ff0120f16a2d5a0d Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Wed, 30 Oct 2024 19:15:41 +0000 Subject: [PATCH] fixup! Add completion for `--pid` Signed-off-by: Harald Albers --- cli/command/container/opts_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/command/container/opts_test.go b/cli/command/container/opts_test.go index 9a4f3ce04b..e0ff746bc5 100644 --- a/cli/command/container/opts_test.go +++ b/cli/command/container/opts_test.go @@ -79,7 +79,7 @@ func TestParseRunLinks(t *testing.T) { t.Fatalf("Error parsing links. Expected []string{\"a:b\", \"c:d\"}, received: %v", hostConfig.Links) } if _, hostConfig, _ := mustParse(t, ""); len(hostConfig.Links) != 0 { - t.Fatalf("Error parsing links. No link expectedCompletions, received: %v", hostConfig.Links) + t.Fatalf("Error parsing links. No link expected, received: %v", hostConfig.Links) } }