From 2b3cedd5d4eedb41901e7ce93dbcdcdbff31d1c6 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Thu, 26 Jan 2023 13:13:36 -0600 Subject: [PATCH] =?UTF-8?q?fix(core):=20update=20escaping=20per=20review?= =?UTF-8?q?=20comment=20=F0=9F=99=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - escape an emoji in source code #7569 --- developer/src/kmc-keyboard/test/test-keys.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/src/kmc-keyboard/test/test-keys.ts b/developer/src/kmc-keyboard/test/test-keys.ts index aff25a91b7..e38a9205dc 100644 --- a/developer/src/kmc-keyboard/test/test-keys.ts +++ b/developer/src/kmc-keyboard/test/test-keys.ts @@ -22,7 +22,7 @@ describe('keys', function () { assert.isNotNull(keys); assert.equal(compilerTestCallbacks.messages.length, 0); assert.equal(keys.keys.length, 1); - assert.equal(keys.keys[0].to.value, '🪦'); + assert.equal(keys.keys[0].to.value, String.fromCodePoint(0x1faa6)); }); it('should compile a hardware layer', function() {