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:
authorMiguel de Icaza <miguel@gnome.org>2012-06-02 00:50:48 +0400
committerMiguel de Icaza <miguel@gnome.org>2012-06-02 00:50:55 +0400
commit8d3b80d4fb899d1892a2942b85a70c6b99e05e2b (patch)
treeb499826d351d8c17a946d4e680e9664686ea6ca3 /mcs/class/Managed.Windows.Forms/Test
parentdb3d5cbc534abf0ee57d02250e7e78d410a437a9 (diff)
[net_1_0] Finally all of NET_1_0 is gone from the source files
Diffstat (limited to 'mcs/class/Managed.Windows.Forms/Test')
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataBindingTests.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataBindingTests.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataBindingTests.cs
index 7ad8f4a1204..e0261dc21bb 100644
--- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataBindingTests.cs
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataBindingTests.cs
@@ -175,11 +175,7 @@ namespace MonoTests.System.Windows.Forms.DataBinding
// Console.WriteLine (event_log);
Assert.AreEqual (
-#if NET_2_0
"0: PositionChanged (to -1)\n1: ItemChanged (index = -1)\n2: PositionChanged (to -1)\n3: CurrentChanged\n4: CurrentItemChanged\n5: ItemChanged (index = -1)\n"
-#else // NET_1_0
- "0: PositionChanged (to -1)\n1: ItemChanged (index = -1)\n2: ItemChanged (index = -1)\n"
-#endif
, event_log, "2");
Assert.AreEqual (0, cm.Count, "3");
@@ -229,19 +225,11 @@ namespace MonoTests.System.Windows.Forms.DataBinding
Assert.AreEqual (
-#if NET_2_0
#if WITH_BINDINGS
"0: CurrentChanged\n1: CurrentItemChanged\n2: PositionChanged (to 0)\n3: ItemChanged (index = -1)\n4: Binding.Format\n"
#else
"0: CurrentChanged\n1: CurrentItemChanged\n2: PositionChanged (to 0)\n3: ItemChanged (index = -1)\n"
#endif
-#else // NET_1_0
-#if WITH_BINDINGS
- "0: CurrentChanged\n1: PositionChanged (to 0)\n2: ItemChanged (index = -1)\n3: Binding.Format\n"
-#else
- "0: CurrentChanged\n1: PositionChanged (to 0)\n2: ItemChanged (index = -1)\n"
-#endif
-#endif
, event_log, "2");
}