From 157b0651a9b7dcedf3cf2240e6230f66b25e78ba Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Wed, 25 Oct 2023 15:08:33 +0200 Subject: [PATCH] cmd/geth: fix test to use new filename --- 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 00e686d83b..cc951d6e97 100644 --- a/cmd/geth/logging_test.go +++ b/cmd/geth/logging_test.go @@ -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) }