From f14e417e9a9c31c2314daf4222889030f32ff72b Mon Sep 17 00:00:00 2001 From: David Hook Date: Mon, 4 Oct 2021 19:56:11 +1100 Subject: format changes only - relates to github #68 --- crypto/test/src/crmf/test/CrmfTest.cs | 2 +- crypto/test/src/crypto/test/AllTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/test') 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) -- cgit 1.4.1