Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Nov 13, 2023
1 parent 6e081fc commit 38fa7f8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -906,7 +906,8 @@ public void sendSignedBlock_shoulNotGossipAndImportBlobsWhenBlobsDoNotExist() {
safeJoin(result);

verifyNoInteractions(blobSidecarPool);
verifyNoInteractions(blobSidecarGossipChannel);
// TODO: fix assertion for blob sidecars (there should be no interactions)
verify(blobSidecarGossipChannel).publishBlobSidecars(List.of());
verify(blockGossipChannel).publishBlock(block);
verify(blockImportChannel).importBlock(block, NOT_REQUIRED);
assertThat(result).isCompletedWithValue(SendSignedBlockResult.success(block.getRoot()));

0 comments on commit 38fa7f8

Please sign in to comment.