From 8b7e88b55c67a90b4337711c383122b5dd446061 Mon Sep 17 00:00:00 2001 From: Andrew Sisley Date: Mon, 18 Nov 2024 14:11:28 -0500 Subject: [PATCH] PR FIXUP - Use strings for cid identifiers --- .../query/commits/branchables/peer_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/integration/query/commits/branchables/peer_test.go b/tests/integration/query/commits/branchables/peer_test.go index 8ba6bf7294..6d864ad9d1 100644 --- a/tests/integration/query/commits/branchables/peer_test.go +++ b/tests/integration/query/commits/branchables/peer_test.go @@ -59,29 +59,29 @@ func TestQueryCommitsBranchables_SyncsAcrossPeerConnection(t *testing.T) { Results: map[string]any{ "commits": []map[string]any{ { - "cid": testUtils.NewUniqueCid(0), + "cid": testUtils.NewUniqueCid("collection"), "links": []map[string]any{ { - "cid": testUtils.NewUniqueCid(1), + "cid": testUtils.NewUniqueCid("composite"), }, }, }, { - "cid": testUtils.NewUniqueCid(2), + "cid": testUtils.NewUniqueCid("age"), "links": []map[string]any{}, }, { - "cid": testUtils.NewUniqueCid(3), + "cid": testUtils.NewUniqueCid("name"), "links": []map[string]any{}, }, { - "cid": testUtils.NewUniqueCid(1), + "cid": testUtils.NewUniqueCid("composite"), "links": []map[string]any{ { - "cid": testUtils.NewUniqueCid(2), + "cid": testUtils.NewUniqueCid("age"), }, { - "cid": testUtils.NewUniqueCid(3), + "cid": testUtils.NewUniqueCid("name"), }, }, },