From d5a448724b178c323e94d080045da19991963b6f Mon Sep 17 00:00:00 2001 From: duqingquan Date: Mon, 7 Aug 2023 20:13:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-tests/utssdk/Array.uts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uni_modules/uts-tests/utssdk/Array.uts b/uni_modules/uts-tests/utssdk/Array.uts index ce7f680..cea9f5c 100644 --- a/uni_modules/uts-tests/utssdk/Array.uts +++ b/uni_modules/uts-tests/utssdk/Array.uts @@ -170,7 +170,7 @@ export function testArray(): Result { test("indexOf", () => { let raw = {} - let arr = new Array() + let arr = new Array() arr.push({}); arr.push({}); arr.push(raw); @@ -201,7 +201,7 @@ export function testArray(): Result { test("lastIndexOf", () => { let raw = {} - let arr = new Array() + let arr = new Array() arr.push({}); arr.push({}); arr.push(raw); -- GitLab