diff --git a/uni_modules/uts-tests/utssdk/Matchers.uts b/uni_modules/uts-tests/utssdk/Matchers.uts index 55597d7ca2cfb517f8fdd647a4926bcda33ee561..61a24e5173626da882f0f866a0994625df1413cb 100644 --- a/uni_modules/uts-tests/utssdk/Matchers.uts +++ b/uni_modules/uts-tests/utssdk/Matchers.uts @@ -17,9 +17,14 @@ export class Matchers { } toEqualNumber(expected: T) { - if (expected == this.actual) { - return - } + // #ifndef APP-IOS + if (expected == this.actual) { + return + } + // #endif + // #ifdef APP-IOS + this.toEqual(expected) + // #endif } } /**