From 9aad98d40988fa40ff55f184cca8e8fd6e3bd989 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 6 May 2026 06:54:20 +0900 Subject: [PATCH] internal/rosa: suppress init verbosity in tests This is generally the preferred option. Signed-off-by: Ophestra --- internal/rosa/rosa_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rosa/rosa_test.go b/internal/rosa/rosa_test.go index bf8c0b95..b9f8206a 100644 --- a/internal/rosa/rosa_test.go +++ b/internal/rosa/rosa_test.go @@ -61,7 +61,7 @@ func getCache(t *testing.T) *pkg.Cache { msg := message.New(log.New(os.Stderr, "rosa: ", 0)) msg.SwapVerbose(true) - if buildTestCache, err = pkg.Open(ctx, msg, 0, 0, 0, a); err != nil { + if buildTestCache, err = pkg.Open(ctx, msg, pkg.CSuppressInit, 0, 0, a); err != nil { t.Fatal(err) } }