From 011f0972f0be6f755bb2ea43c9fa074b5d0a6f32 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 82a3374c4b..8296fd1f99 100644 --- a/ets2panda/test/unit/rest_parameter_flag_test.cpp +++ b/ets2panda/test/unit/rest_parameter_flag_test.cpp @@ -344,7 +344,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