From c10abc691323f76f80074785c5325bef1f50250a Mon Sep 17 00:00:00 2001 From: Simon Bein Date: Tue, 2 Jul 2024 13:54:24 +0200 Subject: [PATCH] fix shellwrapper test --- cmd/shellwrapper_test.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmd/shellwrapper_test.go b/cmd/shellwrapper_test.go index 019d1a0..b8afdc4 100644 --- a/cmd/shellwrapper_test.go +++ b/cmd/shellwrapper_test.go @@ -21,8 +21,12 @@ func TestShellWrapperCmd(t *testing.T) { []string{"bash"}, nil, }, - "invalid arg": { + "fish arg": { []string{"fish"}, + nil, + }, + "invalid arg": { + []string{"invalid"}, fmt.Errorf("konf currently does not support fish"), }, }