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:
Diffstat (limited to 'mcs/class/System/Test/System.ComponentModel.Design/CheckoutExceptionTest.cs')
-rw-r--r--mcs/class/System/Test/System.ComponentModel.Design/CheckoutExceptionTest.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/mcs/class/System/Test/System.ComponentModel.Design/CheckoutExceptionTest.cs b/mcs/class/System/Test/System.ComponentModel.Design/CheckoutExceptionTest.cs
index 9ee7ed031c2..1b3fdf5456b 100644
--- a/mcs/class/System/Test/System.ComponentModel.Design/CheckoutExceptionTest.cs
+++ b/mcs/class/System/Test/System.ComponentModel.Design/CheckoutExceptionTest.cs
@@ -74,7 +74,6 @@ namespace MonoTests.System.ComponentModel.Design
Assert.AreEqual (string.Empty, ex.Message, "#C4");
}
-#if NET_2_0
[Test] // ctor (string, Exception)
public void Constructor3 ()
{
@@ -104,7 +103,6 @@ namespace MonoTests.System.ComponentModel.Design
Assert.IsNotNull (ex.Message, "#D3");
Assert.AreEqual (string.Empty, ex.Message, "#D4");
}
-#endif
[Test] // ctor (string, int)
public void Constructor4 ()
@@ -139,11 +137,7 @@ namespace MonoTests.System.ComponentModel.Design
public void Canceled ()
{
CheckoutException ex = CheckoutException.Canceled;
-#if NET_2_0
Assert.AreEqual (-2147467260, ex.ErrorCode, "#1");
-#else
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#1");
-#endif
Assert.IsNull (ex.InnerException, "#2");
Assert.IsNotNull (ex.Message, "#3");
Assert.IsTrue (ex.Message.IndexOf (ex.GetType ().FullName) == -1, "#4");
@@ -151,4 +145,4 @@ namespace MonoTests.System.ComponentModel.Design
}
}
-#endif \ No newline at end of file
+#endif