summary refs log tree commit diff
path: root/crypto/test/src
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2015-11-08 18:40:10 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2015-11-08 18:40:10 +0700
commitcebeeb6d6573e15fe4f1a834f77ead9e8556f570 (patch)
tree8b5bd79075ce8f4c95c1357777da3852201afc0c /crypto/test/src
parentSome more PORTABLE updates (diff)
downloadBouncyCastle.NET-ed25519-cebeeb6d6573e15fe4f1a834f77ead9e8556f570.tar.xz
A few more changes to sync up with BouncyCastle-PCL
Diffstat (limited to 'crypto/test/src')
-rw-r--r--crypto/test/src/util/test/SimpleTest.cs13
1 files changed, 6 insertions, 7 deletions
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
 		}