mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
cmd/geth: fix logging line count error (#35136)
This commit is contained in:
parent
116314baf9
commit
23483010a4
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue