cmd/geth: fix test to use new filename

This commit is contained in:
Martin Holst Swende 2023-10-25 15:08:33 +02:00
parent 441be09a2b
commit 157b0651a9
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -100,7 +100,7 @@ func testConsoleLogging(t *testing.T, format string, tStart, tEnd int) {
func TestVmodule(t *testing.T) {
checkOutput := func(level int, want, wantNot string) {
t.Helper()
output, err := runSelf("--log.format", "terminal", "--verbosity=0", "--log.vmodule", fmt.Sprintf("logtestcmd.go=%d", level), "logtest")
output, err := runSelf("--log.format", "terminal", "--verbosity=0", "--log.vmodule", fmt.Sprintf("logtestcmd_active.go=%d", level), "logtest")
if err != nil {
t.Fatal(err)
}