From af05f5155e254f387f02a1c4bd4e66d64e69e244 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Thu, 3 Aug 2023 12:38:05 -0500 Subject: [PATCH] chore(developer): test fix For: #9119 --- developer/src/kmc-ldml/test/test-vars.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer/src/kmc-ldml/test/test-vars.ts b/developer/src/kmc-ldml/test/test-vars.ts index af81ca1ec6..3ab10a8939 100644 --- a/developer/src/kmc-ldml/test/test-vars.ts +++ b/developer/src/kmc-ldml/test/test-vars.ts @@ -191,8 +191,8 @@ describe('vars', function () { describe('should match some marker constants', () => { // neither of these live here, but, common/web/types does not import ldml-keyboard-constants otherwise. - assert.equal(constants.marker_sentinel, KMX.UC_SENTINEL); - assert.equal(constants.marker_code_deadkey, KMX.CODE_DEADKEY); + assert.equal(constants.marker_sentinel, KMX.KMXFile.UC_SENTINEL); + assert.equal(constants.marker_code_deadkey, KMX.KMXFile.CODE_DEADKEY); }); describe('markers', function () { this.slow(500); // 0.5 sec -- json schema validation takes a while