diff options
author | David Hook <dgh@cryptoworkshop.com> | 2021-10-04 19:56:11 +1100 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2021-10-04 19:56:11 +1100 |
commit | f14e417e9a9c31c2314daf4222889030f32ff72b (patch) | |
tree | d85d876ef98f5d245729ffa0415cbc9dfa8632af | |
parent | format changes only - relates to github #68 (diff) | |
download | BouncyCastle.NET-ed25519-f14e417e9a9c31c2314daf4222889030f32ff72b.tar.xz |
format changes only - relates to github #68
-rw-r--r-- | crypto/test/src/crmf/test/CrmfTest.cs | 2 | ||||
-rw-r--r-- | crypto/test/src/crypto/test/AllTests.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/crmf/test/CrmfTest.cs b/crypto/test/src/crmf/test/CrmfTest.cs index 3e5251d18..7a5349db1 100644 --- a/crypto/test/src/crmf/test/CrmfTest.cs +++ b/crypto/test/src/crmf/test/CrmfTest.cs @@ -156,7 +156,7 @@ namespace Org.BouncyCastle.Crmf.Tests IsTrue(archiveControl.EnvelopedData); RecipientInformationStore recips = archiveControl.GetEnvelopedData().GetRecipientInfos(); - ArrayList collection = (ArrayList)recips.GetRecipients(); + IList collection = (IList)recips.GetRecipients(); IsTrue(collection.Count == 1); KeyTransRecipientInformation info = (KeyTransRecipientInformation)collection[0]; diff --git a/crypto/test/src/crypto/test/AllTests.cs b/crypto/test/src/crypto/test/AllTests.cs index e7035a663..2b690930d 100644 --- a/crypto/test/src/crypto/test/AllTests.cs +++ b/crypto/test/src/crypto/test/AllTests.cs @@ -31,7 +31,7 @@ namespace Org.BouncyCastle.Crypto.Tests } #endif - [Test] + [Test] public void TestCrypto() { foreach (Org.BouncyCastle.Utilities.Test.ITest test in RegressionTest.tests) |