diff options
Diffstat (limited to 'cmd/podman/common/completion_test.go')
-rw-r--r-- | cmd/podman/common/completion_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/common/completion_test.go b/cmd/podman/common/completion_test.go index c9e189961..63b99501f 100644 --- a/cmd/podman/common/completion_test.go +++ b/cmd/podman/common/completion_test.go @@ -37,6 +37,10 @@ func (c Car) internal() int { return 0 } +func (c Car) TwoOut() (string, string) { + return "", "" +} + func TestAutocompleteFormat(t *testing.T) { testStruct := struct { Name string |