From cebeeb6d6573e15fe4f1a834f77ead9e8556f570 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Sun, 8 Nov 2015 18:40:10 +0700 Subject: A few more changes to sync up with BouncyCastle-PCL --- crypto/test/src/util/test/SimpleTest.cs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'crypto/test/src') diff --git a/crypto/test/src/util/test/SimpleTest.cs b/crypto/test/src/util/test/SimpleTest.cs index 84a7ce02b..1cf9aa16f 100644 --- a/crypto/test/src/util/test/SimpleTest.cs +++ b/crypto/test/src/util/test/SimpleTest.cs @@ -115,11 +115,10 @@ namespace Org.BouncyCastle.Utilities.Test private static string GetFullName( string name) { -// TODO MonoDevelop/Visual Studio embedded resource ids still inconsistent -#if BC_BUILD_MONODEVELOP - return "test.data." + name; +#if PORTABLE + return "crypto.tests." + name; #else - return "crypto.test.data." + name; + return "crypto.test.data." + name; #endif } @@ -127,10 +126,10 @@ namespace Org.BouncyCastle.Utilities.Test string fullName) { // TODO MonoDevelop/Visual Studio embedded resource ids still inconsistent -#if BC_BUILD_MONODEVELOP - return fullName.Substring("test.data.".Length); +#if PORTABLE + return fullName.Substring("crypto.tests.".Length); #else - return fullName.Substring("crypto.test.data.".Length); + return fullName.Substring("crypto.test.data.".Length); #endif } -- cgit 1.4.1