diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-12-16 23:15:38 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-12-16 23:15:38 +0700 |
commit | 35d1cc040b5723826a126f5e68f0cc11b29c50bc (patch) | |
tree | b9cd26039d76d1d5ee5b0f5790f8d3f9a4a8d788 | |
parent | fixed typo... (diff) | |
download | BouncyCastle.NET-ed25519-35d1cc040b5723826a126f5e68f0cc11b29c50bc.tar.xz |
Disable serialization test from net80 on
-rw-r--r-- | crypto/test/src/math/test/BigIntegerTest.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/test/src/math/test/BigIntegerTest.cs b/crypto/test/src/math/test/BigIntegerTest.cs index 8f477d684..88ac7151e 100644 --- a/crypto/test/src/math/test/BigIntegerTest.cs +++ b/crypto/test/src/math/test/BigIntegerTest.cs @@ -765,6 +765,7 @@ namespace Org.BouncyCastle.Math.Tests } } +#if !NET8_0_OR_GREATER [Test] public void TestSerialization() { @@ -785,6 +786,7 @@ namespace Org.BouncyCastle.Math.Tests Assert.AreEqual(x, y); } } +#endif [Test] public void TestSetBit() |