From df4de904a5105bd39330ed13360a0665adc78cc2 Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Mon, 21 Oct 2024 11:42:29 +0100 Subject: [PATCH] fix: formatter_test Signed-off-by: Brian McGee --- format/formatter_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/format/formatter_test.go b/format/formatter_test.go index cff5f3b5..e4c416a0 100644 --- a/format/formatter_test.go +++ b/format/formatter_test.go @@ -30,7 +30,8 @@ func TestInvalidFormatterName(t *testing.T) { // valid name using all the acceptable characters cfg.FormatterConfigs = map[string]*config.Formatter{ "echo_command-1234567890": { - Command: "echo", + Command: "echo", + Includes: []string{"*"}, }, }