fix missed errcheck in websocket test

This commit is contained in:
Graham McIntire 2026-02-11 10:50:00 -06:00
parent 5ad95fac42
commit 9611cfd620
No known key found for this signature in database

View file

@ -518,7 +518,7 @@ func TestWSDialGenerateKeyError(t *testing.T) {
go func() {
conn, _ := ln.Accept()
if conn != nil {
conn.Close()
_ = conn.Close()
}
}()