Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2016-11-22 20:06:33 +0300
committerMarek Safar <marek.safar@gmail.com>2016-11-22 20:13:14 +0300
commit44b95d3d024afdb5eb49f804e7bb9aa5a1d090e1 (patch)
tree2a95c0ea45dfbfe767f45485727812325bc5119a /mcs/class/System.Runtime.Remoting
parent230e3be56d4ad344462b86ff92928e1dfdc16869 (diff)
[System.Runtime.Remoting] Disable test accidentally re-enabled by nunitlite switch
Diffstat (limited to 'mcs/class/System.Runtime.Remoting')
-rw-r--r--mcs/class/System.Runtime.Remoting/Test/BaseCalls.cs2
-rw-r--r--mcs/class/System.Runtime.Remoting/Test/HttpCalls.cs3
2 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/System.Runtime.Remoting/Test/BaseCalls.cs b/mcs/class/System.Runtime.Remoting/Test/BaseCalls.cs
index d1e7bb000e7..4e99c4d1af1 100644
--- a/mcs/class/System.Runtime.Remoting/Test/BaseCalls.cs
+++ b/mcs/class/System.Runtime.Remoting/Test/BaseCalls.cs
@@ -371,7 +371,7 @@ namespace MonoTests.Remoting
try {
testerSurrogate.ProcessContextData ();
- Assert.IsTrue (false, "Exception not thrown");
+ Assert.Fail ("Exception not thrown");
} catch (Exception ex) {
if (ex.InnerException != null)
ex = ex.InnerException;
diff --git a/mcs/class/System.Runtime.Remoting/Test/HttpCalls.cs b/mcs/class/System.Runtime.Remoting/Test/HttpCalls.cs
index 439aa6ea14e..fa77500dbbd 100644
--- a/mcs/class/System.Runtime.Remoting/Test/HttpCalls.cs
+++ b/mcs/class/System.Runtime.Remoting/Test/HttpCalls.cs
@@ -15,6 +15,7 @@ using NUnit.Framework;
namespace MonoTests.Remoting
{
+/*
//[TestFixture]
public class HttpSyncCallTest : SyncCallTest
{
@@ -59,7 +60,7 @@ namespace MonoTests.Remoting
return new HttpChannelManager ();
}
}
-
+*/
[Serializable]
public class HttpChannelManager : ChannelManager
{