Skip to content

Commit

Permalink
fix: but in test passing commitments
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkeil committed Oct 22, 2024
1 parent 078b474 commit b2f920c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/beacon-node/test/unit/util/dataColumn.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ describe("data column sidecars", () => {
expect(columnSidecars.length).toEqual(NUMBER_OF_COLUMNS);
expect(columnSidecars[0].column.length).toEqual(blobs.length);

signedBeaconBlock.message.body.blobKzgCommitments = [];

expect(() => validateDataColumnsSidecars(slot, blockRoot, kzgCommitments, columnSidecars)).toThrow(
expect(() => validateDataColumnsSidecars(slot, blockRoot, [], columnSidecars)).toThrow(
`Invalid data column sidecar slot=${slot}`
);
});
Expand Down

0 comments on commit b2f920c

Please sign in to comment.