[Tests] make sure the test pass even if the locale is wrongly implemented on the platform (#1292)

This commit is contained in:
E.Z. Hart 2017-11-27 17:48:42 -07:00
Родитель ac0d1d7787
Коммит 05741eb2b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1196DD903A2F7606
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -173,10 +173,7 @@ namespace Xamarin.Forms.Core.UnitTests
var bo = new MockBindable { BindingContext = vm };
bo.SetBinding(property, binding);
if (System.Threading.Thread.CurrentThread.CurrentCulture.Name == "tr-TR")
Assert.That(bo.GetValue(property), Is.EqualTo("%95,00"));
else
Assert.That(bo.GetValue(property), Is.EqualTo("95.00 %"));
Assert.That(bo.GetValue(property), Is.EqualTo(string.Format(new System.Globalization.CultureInfo(culture),"{0:P2}",.95d))); //%95,00 or 95.00%
}
[Test]