From b4b5cff57c5afdc0b789aa0130a901974365178a Mon Sep 17 00:00:00 2001 From: Ekaterina Zaytseva Date: Wed, 3 Sep 2025 17:04:09 +0300 Subject: [PATCH] [ArkTS][Std] math: escompat->std.core Issue: #ICVIHN Signed-off-by: Ekaterina Zaytseva --- ets2panda/test/unit/rest_parameter_flag_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ets2panda/test/unit/rest_parameter_flag_test.cpp b/ets2panda/test/unit/rest_parameter_flag_test.cpp index dee24643a6..61fc4eb72e 100644 --- a/ets2panda/test/unit/rest_parameter_flag_test.cpp +++ b/ets2panda/test/unit/rest_parameter_flag_test.cpp @@ -331,7 +331,7 @@ TEST_F(RestParameterTest, external_function_with_rest_parameter_1) SetCurrentProgram(R"( let v = Math.max(0.0, 1.0, 2.0) // Ensure the func is actually called and reference processed by unboxLowering. )"); - CheckRestParameterFlag("escompat.Math.max:escompat.Array;f64;", true); + CheckRestParameterFlag("std.core.Math.max:escompat.Array;f64;", true); } } // namespace ark::es2panda::compiler::test -- Gitee