diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-06 06:54:20 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-06 06:54:20 +0900 |
| commit | 9aad98d40988fa40ff55f184cca8e8fd6e3bd989 (patch) | |
| tree | bfd5b707185eb85d57208c4035b72eeef3a145a1 /internal/rosa/rosa_test.go | |
| parent | b0d06b67dc85d79d104a6bdbea1f627aa09c79a8 (diff) | |
internal/rosa: suppress init verbosity in tests
This is generally the preferred option.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/rosa_test.go')
| -rw-r--r-- | internal/rosa/rosa_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) } } |
