console: add cleanup to avoid leaks in newTester (#27695)

This commit is contained in:
Mskxn
2023-07-11 21:27:48 +02:00
committed by GitHub
parent 645b0db98e
commit 7a565fa4fe
+4
View File
@@ -111,6 +111,10 @@ func newTester(t *testing.T, confOverride func(*ethconfig.Config)) *tester {
t.Fatalf("failed to start test stack: %v", err)
}
client := stack.Attach()
t.Cleanup(func() {
client.Close()
})
prompter := &hookedPrompter{scheduler: make(chan string)}
printer := new(bytes.Buffer)