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
}
|