chore: t.Parallel() + move poll test to own file

This commit is contained in:
Milas Bowman 2025-03-09 21:47:10 -04:00
parent 231423cd0b
commit 0bdd3dfef8
Signed by: milas
SSH key fingerprint: SHA256:ek2D5l1HA34B3wbdErz0QOXm1E46CVvyf/nM4Fwfx/U
5 changed files with 77 additions and 48 deletions

10
main_test.go Normal file
View file

@ -0,0 +1,10 @@
package k2v
import (
"go.uber.org/goleak"
"testing"
)
func TestMain(m *testing.M) {
goleak.VerifyTestMain(m)
}