Skip to content

Commit c117ba8

Browse files
committed
fix fmt
1 parent 68b0375 commit c117ba8

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

tailnet/test/integration/integration.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ import (
1919
"sync"
2020
"sync/atomic"
2121
"syscall"
22-
"tailscale.com/net/packet"
23-
"tailscale.com/wgengine/capture"
2422
"testing"
2523
"time"
2624

@@ -30,8 +28,10 @@ import (
3028
"golang.org/x/xerrors"
3129
"tailscale.com/derp"
3230
"tailscale.com/derp/derphttp"
31+
"tailscale.com/net/packet"
3332
"tailscale.com/tailcfg"
3433
"tailscale.com/types/key"
34+
"tailscale.com/wgengine/capture"
3535

3636
"cdr.dev/slog"
3737
"github.com/coder/coder/v2/coderd/httpapi"
@@ -452,8 +452,7 @@ type UDPEchoService struct{}
452452

453453
func (UDPEchoService) StartService(t *testing.T, logger slog.Logger, _ *tailnet.Conn) {
454454
// tailnet doesn't handle UDP connections "in-process" the way we do for TCP, so we need to listen in the OS,
455-
// and tailnet will forward
456-
//packets.
455+
// and tailnet will forward packets.
457456
l, err := net.ListenUDP("udp", &net.UDPAddr{
458457
IP: net.IPv6zero, // all interfaces
459458
Port: EchoPort,

tailnet/test/integration/suite.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ func TestSuite(t *testing.T, _ slog.Logger, serverURL *url.URL, conn *tailnet.Co
8383
}
8484

8585
func TestBigUDP(t *testing.T, logger slog.Logger, _ *url.URL, conn *tailnet.Conn, _, peer Client) {
86-
8786
t.Run("UDPEcho", func(t *testing.T) {
8887
ctx := testutil.Context(t, testutil.WaitShort)
8988

0 commit comments

Comments
 (0)