From fd78fe767ff863e87ede4228215df839860f26eb Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Sat, 3 Feb 2024 06:23:16 +1300 Subject: [PATCH] fix: replace `Print` with `Println` (#94) --- snaps/clean.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snaps/clean.go b/snaps/clean.go index 9344202..70a9e28 100644 --- a/snaps/clean.go +++ b/snaps/clean.go @@ -106,7 +106,7 @@ func Clean(m *testing.M, opts ...CleanOpts) { testEvents.items, shouldClean && !isCI, ); s != "" { - fmt.Print(s) + fmt.Println(s) } }