From 552b6547db09301c7ab57c0a1f000eb5ee5daf44 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Tue, 16 Sep 2025 16:40:36 +0800 Subject: [PATCH] Fix unit test result issue --- 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 146552323..c58800002 100644 --- a/Flow.Launcher.Test/Plugins/CalculatorTest.cs +++ b/Flow.Launcher.Test/Plugins/CalculatorTest.cs @@ -64,7 +64,7 @@ namespace Flow.Launcher.Test.Plugins // Constants [TestCase(@"pi", "3.1415926536")] // Complex expressions - [TestCase(@"(2+3)*sqrt(16)-log(100)/ln(e)", "19")] + [TestCase(@"(2+3)*sqrt(16)-log(100)/ln(e)", "18")] [TestCase(@"sin(pi/2)+cos(0)+tan(0)", "2")] // Error handling (should return empty result) [TestCase(@"10/0", "")]