From 7e7f85352b23e68e82da7e46683bea2f1f2dc7fe Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Mon, 12 Jan 2026 14:13:01 +0800 Subject: [PATCH] Fix potential locale-dependent test failure Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- Flow.Launcher.Test/Plugins/CalculatorTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Test/Plugins/CalculatorTest.cs b/Flow.Launcher.Test/Plugins/CalculatorTest.cs index 40c7ab29c..4e40d3645 100644 --- a/Flow.Launcher.Test/Plugins/CalculatorTest.cs +++ b/Flow.Launcher.Test/Plugins/CalculatorTest.cs @@ -117,7 +117,7 @@ namespace Flow.Launcher.Test.Plugins public void CalculatorTest(string expression, string result) { _settings.UseThousandsSeparator = false; - _settings.DecimalSeparator = DecimalSeparator.UseSystemLocale; + _settings.DecimalSeparator = DecimalSeparator.Dot; ClassicAssert.AreEqual(GetCalculationResult(expression), result); }