Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2013-11-02 07:36:57 +0400
committerDavid Hook <dgh@cryptoworkshop.com>2013-11-02 07:36:57 +0400
commitebb09ff63a0c84660bb81fb63f382a71a7d42319 (patch)
treef289ba4d77922c7796e2df8056ea812389a79b34 /mail
parentcd83c08efce06af4b4fd73eedb87a98e247ec2ed (diff)
compatibility updates
Diffstat (limited to 'mail')
-rw-r--r--mail/src/test/jdk1.4/org/bouncycastle/mail/smime/test/AllTests.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/src/test/jdk1.4/org/bouncycastle/mail/smime/test/AllTests.java b/mail/src/test/jdk1.4/org/bouncycastle/mail/smime/test/AllTests.java
index 46f20674..a5665887 100644
--- a/mail/src/test/jdk1.4/org/bouncycastle/mail/smime/test/AllTests.java
+++ b/mail/src/test/jdk1.4/org/bouncycastle/mail/smime/test/AllTests.java
@@ -16,11 +16,10 @@ public class AllTests
{
TestSuite suite= new TestSuite("SMIME tests");
- suite.addTest(SMIMESignedTest.suite());
- suite.addTest(SMIMEEnvelopedTest.suite());
+ suite.addTest(NewSMIMESignedTest.suite());
+ suite.addTest(NewSMIMEEnvelopedTest.suite());
suite.addTest(SMIMECompressedTest.suite());
suite.addTest(SMIMEMiscTest.suite());
-
return suite;
}
}