From 07175de3de4fba97c8ea3200a99fd231a3d3200c Mon Sep 17 00:00:00 2001 From: zhenyuWang <13641039885@163.com> Date: Fri, 27 Sep 2024 15:33:32 +0800 Subject: [PATCH] =?UTF-8?q?fix(android):=20=E4=BF=AE=E5=A4=8D=20Result=20t?= =?UTF-8?q?oJSON=20=E5=87=BD=E6=95=B0=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-tests/utssdk/tests.uts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uni_modules/uts-tests/utssdk/tests.uts b/uni_modules/uts-tests/utssdk/tests.uts index f50a7d4..5304142 100644 --- a/uni_modules/uts-tests/utssdk/tests.uts +++ b/uni_modules/uts-tests/utssdk/tests.uts @@ -10,8 +10,8 @@ export class Result implements IJsonStringify { toJSON():any|null{ let jsonRet = { 'total': this.total, - 'passed': JSON.stringify(this.passed), - 'failed': JSON.stringify(this.failed), + 'passed': this.passed, + 'failed': this.failed, } return jsonRet } -- GitLab