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:
authorThomas Goldstein <stifu@free.fr>2012-07-28 13:13:31 +0400
committerThomas Goldstein <stifu@free.fr>2012-07-28 13:13:31 +0400
commita5d3d1c5c9d231502ac21550ff2f32b013734f8b (patch)
tree7cec411d78f2bc675b016bea8d28438c2bdf441f /mcs/class/Managed.Windows.Forms/Test
parent75714e424afd2ee458e1288d756c914a4df2554f (diff)
Dispose of form to avoid TearDown warning
Diffstat (limited to 'mcs/class/Managed.Windows.Forms/Test')
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs
index 0eeea275b9a..0ada0319d33 100644
--- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs
@@ -1213,6 +1213,8 @@ namespace MonoTests.System.Windows.Forms
// Height is font dependent, but this bug is about the width anyways
Assert.AreEqual (244, l.Width, "A1");
+
+ f.Dispose ();
}
[Test] // bug #82040