From 23483010a479fea7aabfce9c8f6605d0ba62ee8d Mon Sep 17 00:00:00 2001 From: cui Date: Sat, 13 Jun 2026 05:09:54 +0800 Subject: [PATCH] cmd/geth: fix logging line count error (#35136) --- cmd/geth/logging_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/logging_test.go b/cmd/geth/logging_test.go index d420c2d078..5131e6787b 100644 --- a/cmd/geth/logging_test.go +++ b/cmd/geth/logging_test.go @@ -96,7 +96,7 @@ func testConsoleLogging(t *testing.T, format string, tStart, tEnd int) { } } if len(haveLines) != len(wantLines) { - t.Errorf("format %v, want %d lines, have %d", format, len(haveLines), len(wantLines)) + t.Errorf("format %v, want %d lines, have %d", format, len(wantLines), len(haveLines)) } }