Fix CI: drop unused netip import and regenerate proto with original protoc

This commit is contained in:
Viktor Liu
2026-04-29 07:42:18 +02:00
parent b5ed7c9782
commit fd704c2ba4
3 changed files with 3 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ package client
import (
"context"
"io"
"net/netip"
"testing"
"time"
@@ -124,7 +125,7 @@ func TestManager_ForeignRelayServerIP(t *testing.T) {
}
buf := make([]byte, len(payload))
if _, err := aliceConn.Read(buf); err != nil {
if _, err := io.ReadFull(aliceConn, buf); err != nil {
t.Fatalf("alice read echo: %s", err)
}
if string(buf) != string(payload) {