diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2019-06-01 18:58:28 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2019-06-01 18:58:28 +0700 |
commit | 7f661edcd5825654f07275faac26b5a759286b8a (patch) | |
tree | 9ed9174849c8df44c4b3f75a14f90a2386d2ac05 | |
parent | Support SM2 in SignerUtilities (diff) | |
download | BouncyCastle.NET-ed25519-7f661edcd5825654f07275faac26b5a759286b8a.tar.xz |
Remove extraneous output
-rw-r--r-- | crypto/test/src/crypto/test/DSTU7564Test.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/crypto/test/DSTU7564Test.cs b/crypto/test/src/crypto/test/DSTU7564Test.cs index 805d3c8ab..ecbfb7453 100644 --- a/crypto/test/src/crypto/test/DSTU7564Test.cs +++ b/crypto/test/src/crypto/test/DSTU7564Test.cs @@ -623,7 +623,7 @@ namespace Org.BouncyCastle.Crypto.Tests public void Dstu7564TestFunction() { string resultText = Perform().ToString(); - Console.WriteLine(resultText); + Assert.AreEqual(Name + ": Okay", resultText); } } |