From 06abadc2314edc667ddde94095f3d95a4741cc67 Mon Sep 17 00:00:00 2001 From: Andrew Gillis <11790789+gammazero@users.noreply.github.com> Date: Fri, 8 Aug 2025 17:26:52 -0700 Subject: [PATCH] Fix failing FUSE test (#10904) Test was failing becuase path passed to `path.NewPath` (from boxo) did not include a required namespace. Prepending the namespace to the path with "/ipfs/" fixes this. --- fuse/readonly/ipfs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuse/readonly/ipfs_test.go b/fuse/readonly/ipfs_test.go index e7dfbcb2a..348236737 100644 --- a/fuse/readonly/ipfs_test.go +++ b/fuse/readonly/ipfs_test.go @@ -187,7 +187,7 @@ func TestIpfsStressRead(t *testing.T) { defer wg.Done() for i := 0; i < 2000; i++ { - item, err := path.NewPath(paths[rand.Intn(len(paths))]) + item, err := path.NewPath("/ipfs/" + paths[rand.Intn(len(paths))]) if err != nil { errs <- err continue