Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Nov 8, 2023
1 parent c2c179a commit cac00c4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.util.Optional;
import java.util.stream.Collectors;
import org.apache.tuweni.bytes.Bytes32;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.mockito.InOrder;
import org.mockito.Mockito;
Expand Down Expand Up @@ -69,6 +70,7 @@ void shouldCreateBlockContents() {
}

@Test
@Disabled("enable when block production flow for blob sidecar inclusion proof is implemented")
void shouldCreateBlindedBlockContentsWhenBlindedBlockRequested() {

final SszList<SszKZGCommitment> blobKzgCommitments = prepareBlobKzgCommitments(spec, 3);
Expand All @@ -81,7 +83,7 @@ void shouldCreateBlindedBlockContentsWhenBlindedBlockRequested() {
assertThat(blindedBlockContainer.getBlock().getBody().getOptionalBlobKzgCommitments())
.hasValue(blobKzgCommitments);
assertThat(blindedBlockContainer.getBlindedBlobSidecars())
.hasValueSatisfying(blindedBlobSidecars -> assertThat(blindedBlobSidecars).isEmpty());
.hasValueSatisfying(blindedBlobSidecars -> assertThat(blindedBlobSidecars).hasSize(3));
}

@Test
Expand Down

0 comments on commit cac00c4

Please sign in to comment.