diff --git a/uni_modules/uts-tests/utssdk/Array.uts b/uni_modules/uts-tests/utssdk/Array.uts index f2d0c9ed4f1ed8741bf1b32bfacc7f6c561d185f..f2231d6f9027c5b3cd4d3133e2c95ca38a4c6266 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; })