From 6e039a4e1e1f7015fb4a5f72513116656582e2c8 Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Fri, 8 Aug 2025 11:22:51 +0200 Subject: [PATCH] client/rpc: re-enable tests on windows. (#10895) Fixes #9905. Co-authored-by: Andrew Gillis <11790789+gammazero@users.noreply.github.com> --- client/rpc/api_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/rpc/api_test.go b/client/rpc/api_test.go index e51aebfba..dd1e1db04 100644 --- a/client/rpc/api_test.go +++ b/client/rpc/api_test.go @@ -4,7 +4,6 @@ import ( "context" "net/http" "net/http/httptest" - "runtime" "strconv" "strings" "sync" @@ -98,10 +97,6 @@ func (np NodeProvider) MakeAPISwarm(t *testing.T, ctx context.Context, fullIdent func TestHttpApi(t *testing.T) { t.Parallel() - if runtime.GOOS == "windows" { - t.Skip("skipping due to #9905") - } - tests.TestApi(NodeProvider{})(t) }