Skip to content

Commit d5e9663

Browse files
committed
removed provider depency from AllTests - not required
1 parent cc4c67b commit d5e9663

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

prov/src/test/java/org/bouncycastle/test/AllTests.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import junit.framework.Test;
55
import junit.framework.TestCase;
66
import junit.framework.TestSuite;
7-
import org.bouncycastle.jce.provider.BouncyCastleProvider;
87

98
import java.security.Security;
109

@@ -36,12 +35,12 @@ public BCTestSetup(Test test)
3635

3736
protected void setUp()
3837
{
39-
Security.addProvider(new BouncyCastleProvider());
38+
// Security.addProvider(new BouncyCastleProvider());
4039
}
4140

4241
protected void tearDown()
4342
{
44-
Security.removeProvider("BC");
43+
// Security.removeProvider("BC");
4544
}
4645
}
4746
}

0 commit comments

Comments
 (0)