diff --git a/uni_modules/uts-tests/utssdk/TInt32Array.uts b/uni_modules/uts-tests/utssdk/TInt32Array.uts index 3698e6214d9d519f7629a7de9f13bea74bfa94bf..8309ac80ea2decc9bd94d00ca6e00f9c1e7180dc 100644 --- a/uni_modules/uts-tests/utssdk/TInt32Array.uts +++ b/uni_modules/uts-tests/utssdk/TInt32Array.uts @@ -174,10 +174,8 @@ export class TInt32Array { let res1 = int32_t1.includes(2); console.log(res1); // true - res = int32.includes(4); - console.log(res); // false - - // expect(res).toEqual(false); + let res2 = int32_t1.includes(4); + console.log(res2); // false let res3 = int32_t1.includes(3, 3); console.log(res3); // false