@cryptotaxi247 / kubo / commits / 6e039a4e1

client/rpc: re-enable tests on windows. (#10895)

Fixes #9905. Co-authored-by: Andrew Gillis <11790789+gammazero@users.noreply.github.com>

Hector Sanjuan committed Aug 8, 2025 at 11:22 UTC 6e039a4e1e1f7015fb4a5f72513116656582e2c8
1 file changed -5
client/rpc/api_test.go
-5
@@ -4,7 +4,6 @@ import (
4 "context"
5 "net/http"
6 "net/http/httptest"
7 - "runtime"
7 "strconv"
8 "strings"
9 "sync"
@@ -98,10 +97,6 @@ func (np NodeProvider) MakeAPISwarm(t *testing.T, ctx context.Context, fullIdent
97 func TestHttpApi(t *testing.T) {
98 t.Parallel()
99
101 - if runtime.GOOS == "windows" {
102 - t.Skip("skipping due to #9905")
103 - }
104 -
100 tests.TestApi(NodeProvider{})(t)
101 }
102