[PTRun][Calculator]Fix unit tests on non-english systems (#36569)

* fix tests

* update comment
This commit is contained in:
Heiko 2025-01-08 11:34:13 +01:00 коммит произвёл GitHub
Родитель 809791da25
Коммит 308c4b817e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -230,6 +230,7 @@ namespace Microsoft.PowerToys.Run.Plugin.Calculator.UnitTests
public void RightAnswerForHumanMultiplicationExpressions(string typedString, double answer) public void RightAnswerForHumanMultiplicationExpressions(string typedString, double answer)
{ {
// Setup // Setup
typedString = typedString.Replace(".", CultureInfo.CurrentCulture.NumberFormat.CurrencyDecimalSeparator); // Workaround to get correct results when the tests are running on a non-english systems.
Query expectedQuery = new(typedString); Query expectedQuery = new(typedString);
Query expectedQueryWithKeyword = new("=" + typedString, "="); Query expectedQueryWithKeyword = new("=" + typedString, "=");