From 3c27b84aa0fb2578c6ab855734ad55bbd075581c Mon Sep 17 00:00:00 2001 From: Robby Cochran Date: Mon, 21 Sep 2026 08:29:34 -0700 Subject: [PATCH] test: introduce obvious output format regression --- runner/cmd/output.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/cmd/output.go b/runner/cmd/output.go index 3a2609d5..0c1a35e4 100644 --- a/runner/cmd/output.go +++ b/runner/cmd/output.go @@ -19,7 +19,7 @@ const ( func parseOutputFormat(s string) (outputFormat, error) { switch strings.ToLower(s) { case "", "table": - return formatTable, nil + return formatJSON, nil case "json": return formatJSON, nil case "yaml":