diff --git a/src/Uno.UI.Tests/BinderTests/Given_Binder.TwoWay.cs b/src/Uno.UI.Tests/BinderTests/Given_Binder.TwoWay.cs index a4b78e67bf95..3adde065585b 100644 --- a/src/Uno.UI.Tests/BinderTests/Given_Binder.TwoWay.cs +++ b/src/Uno.UI.Tests/BinderTests/Given_Binder.TwoWay.cs @@ -9,6 +9,7 @@ using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Data; using Uno.UI.Xaml; +using System.Globalization; namespace Uno.UI.Tests.BinderTests { @@ -308,7 +309,9 @@ public object Convert(object value, Type targetType, object parameter, string la if (value != null) { var result = (double)value; - return result.ToString("C"); + + // Required after mstest 3.3.6, which changes the default culture + return result.ToString("C", new CultureInfo("en-US")); } else {