From e84f859d6c8c5d7125957e13151656824d0d0fa7 Mon Sep 17 00:00:00 2001 From: Haolan Date: Mon, 15 Sep 2025 11:04:30 +0800 Subject: [PATCH] fix: unexpected string --- _demo/embed/esp32/rt/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_demo/embed/esp32/rt/main.go b/_demo/embed/esp32/rt/main.go index 3a2f1599..bdd98bfd 100644 --- a/_demo/embed/esp32/rt/main.go +++ b/_demo/embed/esp32/rt/main.go @@ -278,7 +278,7 @@ func testMultiplicationFunctions() { // Test muldi3 - signed 64-bit multiplication assertEqualInt64("muldi3", muldi3(5, 4), 20) - assertEqualInt64("mul极3", muldi3(-5, 4), -20) + assertEqualInt64("muldi3", muldi3(-5, 4), -20) assertEqualInt64("muldi3", muldi3(5, -4), -20) // Test muldf3 - double precision multiplication