From ca49b2958244c323b9e8435fe2a12dd14534e080 Mon Sep 17 00:00:00 2001 From: James Tucker Date: Wed, 10 May 2023 14:10:22 -0700 Subject: [PATCH] tsnet: reenable TestLoopbackSOCKS5 on Windows This test was either fixed in the intermediate time or mis-flagged during the #7876 triage, but is now passing. Updates #7876 Signed-off-by: James Tucker --- tsnet/tsnet_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tsnet/tsnet_test.go b/tsnet/tsnet_test.go index 5ab270994..8de731726 100644 --- a/tsnet/tsnet_test.go +++ b/tsnet/tsnet_test.go @@ -24,7 +24,6 @@ import ( "net/netip" "os" "path/filepath" - "runtime" "strings" "sync" "testing" @@ -357,10 +356,6 @@ func TestLoopbackLocalAPI(t *testing.T) { } func TestLoopbackSOCKS5(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("TODO(#7876): test regressed on windows while CI was broken") - } - ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel()