fix typo in UDP connection helper function in tests (#4970)

This commit is contained in:
Marten Seemann
2025-02-24 09:39:29 +01:00
committed by GitHub
parent 6033030017
commit 751ca8dfb6
34 changed files with 230 additions and 230 deletions

View File

@@ -40,7 +40,7 @@ func TestKeyUpdates(t *testing.T) {
return
}
server, err := quic.Listen(newUPDConnLocalhost(t), getTLSConfig(), nil)
server, err := quic.Listen(newUDPConnLocalhost(t), getTLSConfig(), nil)
require.NoError(t, err)
defer server.Close()
@@ -48,7 +48,7 @@ func TestKeyUpdates(t *testing.T) {
defer cancel()
conn, err := quic.Dial(
ctx,
newUPDConnLocalhost(t),
newUDPConnLocalhost(t),
server.Addr(),
getTLSClientConfig(),
getQuicConfig(&quic.Config{Tracer: func(context.Context, logging.Perspective, quic.ConnectionID) *logging.ConnectionTracer {