diff options
author | Roy Basmacier <roy.basmacier@keyfactor.com> | 2022-07-11 11:17:56 -0400 |
---|---|---|
committer | Roy Basmacier <roy.basmacier@keyfactor.com> | 2022-07-11 11:17:56 -0400 |
commit | 9797869ce3c1f2bf038b2054cfeea8b3754eace3 (patch) | |
tree | 617bc0a03a2c2d32f02864b12cbd3a63af4683fa /crypto/test | |
parent | minor reformatting (diff) | |
download | BouncyCastle.NET-ed25519-9797869ce3c1f2bf038b2054cfeea8b3754eace3.tar.xz |
Fixed static problem in Picnic
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs b/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs index 99b649e6a..550a94c68 100644 --- a/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs +++ b/crypto/test/src/pqc/crypto/test/PicnicVectorTest.cs @@ -53,14 +53,14 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests }; [TestCaseSource(nameof(TestVectorFilesBasic))] - //[Parallelizable(ParallelScope.All)] + [Parallelizable(ParallelScope.All)] public void TestVectorsBasic(string testVectorFile) { RunTestVectorFile(testVectorFile); } [Explicit, TestCaseSource(nameof(TestVectorFilesExtra))] - //[Parallelizable(ParallelScope.All)] + [Parallelizable(ParallelScope.All)] public void TestVectorsExtra(string testVectorFile) { RunTestVectorFile(testVectorFile); |