Fix test project
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()
|