diff --git a/test/init1.go b/test/init1.go index 62dfb72bf9..a008e3e134 100644 --- a/test/init1.go +++ b/test/init1.go @@ -40,7 +40,7 @@ func init() { sys1, numGC1 := memstats.Sys, memstats.NumGC if sys1-sys >= N*MB || numGC1 == numGC { println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory") - println("numGC went", numGC, "to", numGC) + println("numGC went", numGC, "to", numGC1) panic("init1") } }