From 14349af6f4b3868a9e4b3c77009104f40dff5229 Mon Sep 17 00:00:00 2001 From: hemenghao Date: Wed, 3 Sep 2025 16:01:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: hemenghao --- test/unittest/napi_test/src/InputMethodTest.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/unittest/napi_test/src/InputMethodTest.js b/test/unittest/napi_test/src/InputMethodTest.js index 389852337..1b4190a0e 100644 --- a/test/unittest/napi_test/src/InputMethodTest.js +++ b/test/unittest/napi_test/src/InputMethodTest.js @@ -506,15 +506,15 @@ describe('InputMethodTest', function () { id:extName1[0], }; inputMethod.switchCurrentInputMethodAndSubtype(inputMethodProperty, InputMethodSubtype).then(ret => { - onsole.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 1`); + console.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 1`); expect(ret).assertTrue(); - onsole.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 2`); + console.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 2`); let subProp = inputMethod.getCurrentInputMethodSubtype(); - onsole.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 3`); + console.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 3`); checkImeCurrentSubProp(subProp, 0); - onsole.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 4`); + console.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 4`); let property = inputMethod.getCurrentInputMethod(); - onsole.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 5`); + console.error(`inputmethod_test_switchCurrentInputMethodAndSubtype_001 5`); checkImeCurrentProp(property, 0); console.info('************* inputmethod_test_switchCurrentInputMethodAndSubtype_001 Test end*************'); wait(WAIT_DEAL_OK); -- Gitee