From cf0ccd2f6ec453021ff83491782e32400fea5b62 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 15:46:16 -0500 Subject: [PATCH] refactor(benchmark_test): migrate from github.com/ipfs/go-cid to code.sonr.org/go/cid --- benchmark_test.go | 2 +- cid_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark_test.go b/benchmark_test.go index 83b201a..8fe694c 100644 --- a/benchmark_test.go +++ b/benchmark_test.go @@ -4,7 +4,7 @@ import ( "math/rand" "testing" - "github.com/ipfs/go-cid" + "code.sonr.org/go/cid" "github.com/multiformats/go-multihash" ) diff --git a/cid_test.go b/cid_test.go index 36fba76..02cc718 100644 --- a/cid_test.go +++ b/cid_test.go @@ -33,7 +33,7 @@ func assertEqual(t *testing.T, a, b Cid) { func TestPrefixSum(t *testing.T) { // Test creating CIDs both manually and with Prefix. - // Tests: https://github.com/ipfs/go-cid/issues/83 + // Tests: https://code.sonr.org/go/cid/issues/83 for _, hashfun := range []uint64{ mh.IDENTITY, mh.SHA3, mh.SHA2_256, } {