From 457ed86ef88086a528ca2c6f2aaef70cce93718a Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Sat, 1 Jun 2024 16:44:22 +0200 Subject: [PATCH] fix(ignore): `TuYa` -> `Tuya` https://github.com/Koenkk/zigbee2mqtt/discussions/22876 --- .github/ISSUE_TEMPLATE/wrong_device.yaml | 2 +- test/publish.test.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/wrong_device.yaml b/.github/ISSUE_TEMPLATE/wrong_device.yaml index 3e0355cf8e..6b43c51a14 100644 --- a/.github/ISSUE_TEMPLATE/wrong_device.yaml +++ b/.github/ISSUE_TEMPLATE/wrong_device.yaml @@ -19,7 +19,7 @@ body: id: model attributes: label: Model - description: Expected model, model that is printed on the device, for TuYa device this is NOT something like TS0601 or _TZE200_cf1sl3tj + description: Expected model, model that is printed on the device, for Tuya device this is NOT something like TS0601 or _TZE200_cf1sl3tj placeholder: RTCGQ01LM validations: required: true diff --git a/test/publish.test.js b/test/publish.test.js index 2691bc0469..891b30e1b5 100644 --- a/test/publish.test.js +++ b/test/publish.test.js @@ -225,7 +225,7 @@ describe('Publish', () => { ); }); - it('Should publish messages to TuYa switch with dummy endpoints', async () => { + it('Should publish messages to Tuya switch with dummy endpoints', async () => { const device = zigbeeHerdsman.devices.TS0601_switch; const endpoint = device.getEndpoint(1); await MQTT.events.message('zigbee2mqtt/TS0601_switch/set', stringify({state_l2: 'ON'})); @@ -240,7 +240,7 @@ describe('Publish', () => { ); }); - it('Should publish messages to TuYa cover switch with dummy endpoints', async () => { + it('Should publish messages to Tuya cover switch with dummy endpoints', async () => { const device = zigbeeHerdsman.devices.TS0601_cover_switch; const endpoint = device.getEndpoint(1); await MQTT.events.message('zigbee2mqtt/TS0601_cover_switch/set', stringify({state: 'OPEN'}));