diff --git a/uni_modules/uts-tests/utssdk/Math.uts b/uni_modules/uts-tests/utssdk/Math.uts index e4ddabf814debf047add9f638df5d6e4c1a5e804..93ec652ec94bb023e757203882c07172e20c55df 100644 --- a/uni_modules/uts-tests/utssdk/Math.uts +++ b/uni_modules/uts-tests/utssdk/Math.uts @@ -237,7 +237,7 @@ export function testMath(): Result { expect(Math.trunc(0.123)).toEqual(0); }) test('round', () => { - expect(Math.round(0.9).toEqual(1)); + expect(Math.round(0.9)).toEqual(1); expect(Math.round(5.95)).toEqual(6); expect(Math.round(-5.05)).toEqual(-5); })