X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FWindowsBase%2FTest%2FSystem.Windows%2FInt32RectConverterTest.cs;h=2aecc932a3ad0637006c1940bd916f69e40124b8;hb=8efc784bd99a6bc2519afedd5eef985b2dab0eb7;hp=64375844ccd8dfac57e4121a643e488f1ae5f5c0;hpb=6e2db26f5ed7b992de75d07522bb215a43af124a;p=mono.git diff --git a/mcs/class/WindowsBase/Test/System.Windows/Int32RectConverterTest.cs b/mcs/class/WindowsBase/Test/System.Windows/Int32RectConverterTest.cs index 64375844ccd..2aecc932a3a 100644 --- a/mcs/class/WindowsBase/Test/System.Windows/Int32RectConverterTest.cs +++ b/mcs/class/WindowsBase/Test/System.Windows/Int32RectConverterTest.cs @@ -24,6 +24,7 @@ // using System; +using System.Globalization; using System.Windows; using System.Windows.Media; using NUnit.Framework; @@ -88,14 +89,13 @@ namespace MonoTests.System.Windows { } [Test] - [Category ("NotWorking")] public void ConvertTo () { Int32RectConverter r = new Int32RectConverter (); Int32Rect rect = new Int32Rect (0, 0, 1, 2); - object o = r.ConvertTo (rect, typeof (string)); + object o = r.ConvertTo (null, CultureInfo.InvariantCulture, rect, typeof (string)); Assert.AreEqual (typeof (string), o.GetType()); Assert.AreEqual ("0,0,1,2", (string)o);