X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FWindowsBase%2FTest%2FSystem.Windows%2FVectorConverterTest.cs;h=af6dd725aeaad74c2cf6b3548ab45163bc6baf48;hb=8efc784bd99a6bc2519afedd5eef985b2dab0eb7;hp=8c2a74496356cf5ce1862fededde8fea5ab4612b;hpb=6e2db26f5ed7b992de75d07522bb215a43af124a;p=mono.git diff --git a/mcs/class/WindowsBase/Test/System.Windows/VectorConverterTest.cs b/mcs/class/WindowsBase/Test/System.Windows/VectorConverterTest.cs index 8c2a7449635..af6dd725aea 100644 --- a/mcs/class/WindowsBase/Test/System.Windows/VectorConverterTest.cs +++ b/mcs/class/WindowsBase/Test/System.Windows/VectorConverterTest.cs @@ -24,6 +24,7 @@ // using System; +using System.Globalization; using System.Windows; using System.Windows.Media; using NUnit.Framework; @@ -82,7 +83,7 @@ namespace MonoTests.System.Windows { Vector rect = new Vector (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 ("1,2", (string)o);