From 4bafab6a89385ac0ce8ae6960667b54a1d2a70e7 Mon Sep 17 00:00:00 2001 From: Hollokin Date: Sat, 14 Jan 2023 18:55:05 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20744af9a=20from=20https://gitee.com/holl?= =?UTF-8?q?okin/xts=5Facts/pulls/7227=20=E3=80=90=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=B3=95=E6=A1=86=E6=9E=B6=E3=80=91=E4=BF=AE=E6=94=B9d.ts?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=90=8D=E5=A4=A7=E5=B0=8F=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hollokin --- .../entry/src/main/ets/ImExtAbility/ImExtAbility.ets | 4 ++-- .../entry/src/main/ets/test/imeAbilityTest.test.ets | 4 ++-- .../entry/src/main/ets/test/inputMethodStageJSUnit.ets | 4 ++-- .../entry/src/main/ets/test/inputMethodEngineJSUnit.ets | 2 +- .../entry/src/main/ets/test/inputMethodJSUnit.ets | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/inputmethod/InputMethodTest_Stage/entry/src/main/ets/ImExtAbility/ImExtAbility.ets b/inputmethod/InputMethodTest_Stage/entry/src/main/ets/ImExtAbility/ImExtAbility.ets index 16bf442e3..2b5d95374 100644 --- a/inputmethod/InputMethodTest_Stage/entry/src/main/ets/ImExtAbility/ImExtAbility.ets +++ b/inputmethod/InputMethodTest_Stage/entry/src/main/ets/ImExtAbility/ImExtAbility.ets @@ -12,7 +12,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import inputMethodExtensionAbility from '@ohos.inputmethodextensionability' +import inputMethodExtensionAbility from '@ohos.InputMethodExtensionAbility' export default class ImExtAbility extends inputMethodExtensionAbility { @@ -51,4 +51,4 @@ export default class ImExtAbility extends inputMethodExtensionAbility { onDestroy() { console.info("onDestroy: inputMethodExtensionAbility destroy."); } -} \ No newline at end of file +} diff --git a/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/imeAbilityTest.test.ets b/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/imeAbilityTest.test.ets index cabe2ddf1..3f125b529 100644 --- a/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/imeAbilityTest.test.ets +++ b/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/imeAbilityTest.test.ets @@ -13,7 +13,7 @@ * limitations under the License. */ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "@ohos/hypium" -import inputMethod from '@ohos.inputmethod' +import inputMethod from '@ohos.inputMethod' export default function imeAbilityTest(abilityContext) { describe('imeAbilityTest', function () { @@ -110,4 +110,4 @@ export default function imeAbilityTest(abilityContext) { done(); }) }) -} \ No newline at end of file +} diff --git a/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/inputMethodStageJSUnit.ets b/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/inputMethodStageJSUnit.ets index d7f629445..933393f0a 100644 --- a/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/inputMethodStageJSUnit.ets +++ b/inputmethod/InputMethodTest_Stage/entry/src/main/ets/test/inputMethodStageJSUnit.ets @@ -13,8 +13,8 @@ * limitations under the License. */ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from "@ohos/hypium" -import inputMethod from '@ohos.inputmethod'; -import subtype from '@ohos.inputMethodSubtype'; +import inputMethod from '@ohos.inputMethod'; +import subtype from '@ohos.InputMethodSubtype'; export default function inputMethodStageJSUnit() { describe('inputMethodTest', function () { diff --git a/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets b/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets index 2b71b2909..7322bb92a 100644 --- a/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets +++ b/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodEngineJSUnit.ets @@ -13,7 +13,7 @@ * limitations under the License. */ import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium'; -import inputMethodEngine from '@ohos.inputmethodengine'; +import inputMethodEngine from '@ohos.inputMethodEngine'; import Utils from './Utils'; import router from '@system.router'; import events_emitter from '@ohos.events.emitter'; diff --git a/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodJSUnit.ets b/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodJSUnit.ets index 1f1643c71..d1214bb56 100644 --- a/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodJSUnit.ets +++ b/inputmethod/InputMethodTest_ets/entry/src/main/ets/test/inputMethodJSUnit.ets @@ -13,7 +13,7 @@ * limitations under the License. */ import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium'; -import inputMethod from '@ohos.inputmethod'; +import inputMethod from '@ohos.inputMethod'; export default function inputMethodJSUnit() { describe('appInfoTest_input_2', function () { -- GitLab