From 4b2c60c37295f0c108c5edb48540a16f1d97eac8 Mon Sep 17 00:00:00 2001 From: mahaifeng Date: Wed, 4 Sep 2024 13:12:35 +0800 Subject: [PATCH] =?UTF-8?q?[array]=E5=8E=BB=E9=99=A4=E6=89=8B=E5=8A=A8?= =?UTF-8?q?=E7=94=9F=E6=88=90=E7=9A=84=E4=BB=A3=E7=A0=81(=E5=8E=BB?= =?UTF-8?q?=E6=8E=89=E6=96=B9=E6=B3=95=E4=B8=8B=E9=9D=A2=E7=9A=84=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B=E4=BB=A3=E7=A0=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-tests/utssdk/Array.uts | 1 - 1 file changed, 1 deletion(-) diff --git a/uni_modules/uts-tests/utssdk/Array.uts b/uni_modules/uts-tests/utssdk/Array.uts index f2d0c9e..f2231d6 100644 --- a/uni_modules/uts-tests/utssdk/Array.uts +++ b/uni_modules/uts-tests/utssdk/Array.uts @@ -182,7 +182,6 @@ export function testArray() : Result { const array2 : number[] = [1, 2, 3]; array2.filter((element : number, index : number, array : number[]) : boolean => { - expect(array[index]).toEqual(element); console.log(array[index])//1=>2=>3 return true; }) -- GitLab