summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2021-10-04 19:56:11 +1100
committerDavid Hook <dgh@cryptoworkshop.com>2021-10-04 19:56:11 +1100
commitf14e417e9a9c31c2314daf4222889030f32ff72b (patch)
treed85d876ef98f5d245729ffa0415cbc9dfa8632af /crypto/test
parentformat changes only - relates to github #68 (diff)
downloadBouncyCastle.NET-ed25519-f14e417e9a9c31c2314daf4222889030f32ff72b.tar.xz
format changes only - relates to github #68
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/crmf/test/CrmfTest.cs2
-rw-r--r--crypto/test/src/crypto/test/AllTests.cs2
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)