From 03224222924739dbe991b063d86728734dd17f77 Mon Sep 17 00:00:00 2001 From: Farseen Date: Mon, 7 Oct 2024 22:33:31 +0530 Subject: [PATCH] test-api: Use zero width space to fix the space around the dot --- tests/api/api.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/api.test.ts b/tests/api/api.test.ts index 1c86f9b..a97ae28 100644 --- a/tests/api/api.test.ts +++ b/tests/api/api.test.ts @@ -318,7 +318,7 @@ describe("API coverage tests", () => { }) }) describe("Compare each CDL class/method to its CSL counterpart", () => { - test.each(compareToCslTests)("($n) Comparing CDL's $class . $comparedToMethod.name to CSL's", (params) => { + test.each(compareToCslTests)("($n) Comparing CDL's $class​.$comparedToMethod.name to CSL's", (params) => { compareToClass(cdlClassesMap, params.class, params.comparedToMethod); }) });