Skip to content

Commit bb7ceb1

Browse files
committed
fixup! requestid): print requestids as string uuids in logs
1 parent 89fc820 commit bb7ceb1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

impl/graphsync_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,12 +1184,11 @@ func TestGraphsyncRoundTripMultipleAlternatePersistence(t *testing.T) {
11841184
progressChan1, errChan1 := requestor.Request(ctx, td.host2.ID(), blockChain.TipLink, blockChain.Selector(), extension1)
11851185
progressChan2, errChan2 := requestor.Request(ctx, td.host2.ID(), blockChain.TipLink, blockChain.Selector(), extension2)
11861186

1187-
// todo
1188-
testutil.VerifyEmptyErrors(ctx, t, errChan1)
11891187
blockChain.VerifyWholeChain(ctx, progressChan1)
1188+
testutil.VerifyEmptyErrors(ctx, t, errChan1)
11901189
require.Len(t, altStore1, blockChainLength, "did not store all blocks in alternate store 1")
1191-
testutil.VerifyEmptyErrors(ctx, t, errChan2)
11921190
blockChain.VerifyWholeChain(ctx, progressChan2)
1191+
testutil.VerifyEmptyErrors(ctx, t, errChan2)
11931192
require.Len(t, altStore1, blockChainLength, "did not store all blocks in alternate store 2")
11941193

11951194
drain(requestor)

0 commit comments

Comments
 (0)