Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Dec 21, 2024
1 parent b31157a commit 755003a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ void shouldRequestRemainingRequiredBlobSidecarsWhenForwardSyncCompletes() {
assertTaskCounts(2, 2, 0);
final List<Bytes32> requestingBlockRoots =
tasks.stream().map(FetchBlobSidecarsTask::getKey).toList();
assertThat(requestingBlockRoots).containsExactly(blockRoot, blockRoot1);
assertThat(requestingBlockRoots).containsExactlyInAnyOrder(blockRoot, blockRoot1);
}

private FetchBlobSidecarsTask createMockTask(final InvocationOnMock invocationOnMock) {
Expand Down

0 comments on commit 755003a

Please sign in to comment.