Skip to content

Commit

Permalink
fix blob sidecars by range integration test (Consensys#7627)
Browse files Browse the repository at this point in the history
* fix blob sidecars by range integration test
  • Loading branch information
mehdi-aouadi authored Oct 26, 2023
1 parent 30d8007 commit 90ed68a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ private List<BlobSidecar> requestBlobSidecarsByRange(
final List<BlobSidecar> blobSidecars = new ArrayList<>();
waitFor(
peer.requestBlobSidecarsByRange(from, count, RpcResponseListener.from(blobSidecars::add)));
// TODO: https://github.com/Consensys/teku/issues/7617
// assertThat(peer.getOutstandingRequests()).isEqualTo(0);
waitFor(() -> assertThat(peer.getOutstandingRequests()).isEqualTo(0));
return blobSidecars;
}
}

0 comments on commit 90ed68a

Please sign in to comment.