X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FWindowsBase%2FTest%2FSystem.Windows%2FVectorTest.cs;h=20e64e3134ee603583331ea904071c2af11c9acd;hb=8efc784bd99a6bc2519afedd5eef985b2dab0eb7;hp=2f203729adf21c3f8fe9e8ed17f5303fa284fd7b;hpb=6e2db26f5ed7b992de75d07522bb215a43af124a;p=mono.git diff --git a/mcs/class/WindowsBase/Test/System.Windows/VectorTest.cs b/mcs/class/WindowsBase/Test/System.Windows/VectorTest.cs index 2f203729adf..20e64e3134e 100644 --- a/mcs/class/WindowsBase/Test/System.Windows/VectorTest.cs +++ b/mcs/class/WindowsBase/Test/System.Windows/VectorTest.cs @@ -24,6 +24,7 @@ // using System; +using System.Globalization; using System.Windows; using System.Windows.Media; using NUnit.Framework; @@ -56,7 +57,7 @@ namespace MonoTests.System.Windows { public void ToStringTest () { Vector v = new Vector (4, 5); - Assert.AreEqual ("4,5", v.ToString()); + Assert.AreEqual ("4,5", v.ToString(CultureInfo.InvariantCulture)); } [Test]