diff --git a/build/build.proj b/build/build.proj index 6a73a650..92973927 100644 --- a/build/build.proj +++ b/build/build.proj @@ -1,4 +1,4 @@ - + @@ -7,15 +7,16 @@ False - + + - + - + @@ -30,16 +31,16 @@ - + - + - + diff --git a/src/UnitTests/LinearAlgebraTests/Double/VectorTests.cs b/src/UnitTests/LinearAlgebraTests/Double/VectorTests.cs index 3089c328..7b001c41 100644 --- a/src/UnitTests/LinearAlgebraTests/Double/VectorTests.cs +++ b/src/UnitTests/LinearAlgebraTests/Double/VectorTests.cs @@ -10,6 +10,7 @@ namespace MathNet.Numerics.UnitTests.LinearAlgebraTests.Double { using System; using System.Collections.Generic; + using System.Globalization; using MathNet.Numerics.LinearAlgebra.Double; @@ -49,8 +50,8 @@ namespace MathNet.Numerics.UnitTests.LinearAlgebraTests.Double { var vector = CreateVector(_data); var str = vector.ToString(); - - Assert.AreEqual("1,2,3,4,5", str); + var sep = CultureInfo.CurrentCulture.TextInfo.ListSeparator; + Assert.AreEqual(string.Format("1{0}2{0}3{0}4{0}5", sep), str); } ///