fix test
All checks were successful
Test / Run unit tests (pull_request) Successful in 16m34s
Test / Run integration tests (pull_request) Successful in 30m15s

This commit is contained in:
Roy Crihfield 2023-09-26 02:50:18 +08:00
parent 52deae0528
commit 77e00278e4

View File

@ -92,7 +92,7 @@ func loadBlockData(t *testing.T) []testCase {
func TestFromBlockAndReceipts(t *testing.T) {
testCases := loadBlockData(t)
for _, tc := range testCases {
_, _, _, _, err := FromBlockAndReceipts(tc.block, tc.receipts)
_, _, _, err := FromBlockAndReceipts(tc.block, tc.receipts)
if err != nil {
t.Fatalf("error generating IPLDs from block and receipts, err %v, kind %s, block hash %s", err, tc.kind, tc.block.Hash())
}