Skip to content

Commit

Permalink
remove bouncy castle provider from test
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-aouadi committed Jan 10, 2025
1 parent a453ca8 commit 0291552
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@
import static java.util.stream.Collectors.toList;
import static org.junit.jupiter.api.Assertions.assertEquals;

import java.security.Security;
import java.util.Arrays;
import java.util.List;
import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.Bytes32;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.Test;
import tech.pegasys.teku.bls.BLSKeyPair;
import tech.pegasys.teku.bls.BLSSecretKey;
Expand Down Expand Up @@ -60,10 +58,6 @@ class MockStartDepositGeneratorTest {
private final Spec spec = TestSpecFactory.createDefault();
private final MockStartDepositGenerator generator = new MockStartDepositGenerator(spec);

static {
Security.addProvider(new BouncyCastleProvider());
}

@Test
public void shouldGenerateDepositData() {
final List<BLSKeyPair> keyPairs =
Expand Down

0 comments on commit 0291552

Please sign in to comment.