Skip to content

Commit

Permalink
PR FIXUP - Use strings for cid identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSisley committed Nov 18, 2024
1 parent c4ab423 commit 8b7e88b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/integration/query/commits/branchables/peer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
},
},
},
Expand Down

0 comments on commit 8b7e88b

Please sign in to comment.