From 3be80a930d2488574758d4ea57c9aea4048c391f Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Wed, 29 May 2013 14:54:53 -0400 Subject: [PATCH] Remove MOBILE defines inside X509Chain tests --- .../System.Security.Cryptography.X509Certificates/X509ChainTest.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mcs/class/System/Test/System.Security.Cryptography.X509Certificates/X509ChainTest.cs b/mcs/class/System/Test/System.Security.Cryptography.X509Certificates/X509ChainTest.cs index 0a860c137ed..9439f666cc8 100644 --- a/mcs/class/System/Test/System.Security.Cryptography.X509Certificates/X509ChainTest.cs +++ b/mcs/class/System/Test/System.Security.Cryptography.X509Certificates/X509ChainTest.cs @@ -284,14 +284,9 @@ namespace MonoTests.System.Security.Cryptography.X509Certificates { public void StaticCreation () { X509Chain c = X509Chain.Create (); -#if MOBILE - Assert.IsNull (c); -#else CheckDefaultChain (c); -#endif } -#if !MOBILE [Test] public void CreateViaCryptoConfig () { @@ -299,7 +294,6 @@ namespace MonoTests.System.Security.Cryptography.X509Certificates { Assert.AreEqual (typeof (X509Chain), CryptoConfig.CreateFromName ("X509Chain").GetType (), "X509Chain"); Assert.IsNull (CryptoConfig.CreateFromName ("System.Security.Cryptography.X509Certificates.X509Chain"), "System.Security.Cryptography.X509Certificates.X509Chain"); } -#endif } } -- 2.11.4.GIT