summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-11-02 00:40:00 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-11-02 00:40:00 +0700
commit43578d4540f68254a414b509eb773346915e0542 (patch)
tree3ccf0ab64e315e9ed710a61c90c791b9d51df066 /crypto
parentMore release prep. (diff)
downloadBouncyCastle.NET-ed25519-43578d4540f68254a414b509eb773346915e0542.tar.xz
Fix test project
Diffstat (limited to 'crypto')
-rw-r--r--crypto/test/BouncyCastle.Crypto.Tests.csproj3
-rw-r--r--crypto/test/src/util/test/SimpleTest.cs4
2 files changed, 3 insertions, 4 deletions
diff --git a/crypto/test/BouncyCastle.Crypto.Tests.csproj b/crypto/test/BouncyCastle.Crypto.Tests.csproj

index 7eced3c7f..26df7ee76 100644 --- a/crypto/test/BouncyCastle.Crypto.Tests.csproj +++ b/crypto/test/BouncyCastle.Crypto.Tests.csproj
@@ -3,8 +3,7 @@ <PropertyGroup> <TargetFrameworks>net6.0;netcoreapp3.1;net472;net462</TargetFrameworks> <IsPackable>false</IsPackable> - <AssemblyOriginatorKeyFile>..\..\BouncyCastle.snk</AssemblyOriginatorKeyFile> - <SignAssembly>true</SignAssembly> + <SignAssembly>false</SignAssembly> <EnableDefaultItems>false</EnableDefaultItems> <NoWarn>1591</NoWarn> <RootNamespace>Org.BouncyCastle</RootNamespace> diff --git a/crypto/test/src/util/test/SimpleTest.cs b/crypto/test/src/util/test/SimpleTest.cs
index 0a2b5e991..21b4daabb 100644 --- a/crypto/test/src/util/test/SimpleTest.cs +++ b/crypto/test/src/util/test/SimpleTest.cs
@@ -168,12 +168,12 @@ namespace Org.BouncyCastle.Utilities.Test private static string GetFullName(string name) { - return "BouncyCastle.Crypto.Tests.data." + name; + return "Org.BouncyCastle.data." + name; } private static string GetShortName(string fullName) { - return fullName.Substring("BouncyCastle.Crypto.Tests.data.".Length); + return fullName.Substring("Org.BouncyCastle.data.".Length); } private static string GetNewLine()