From f635631bff92143e0256b64671adfbfc812423b0 Mon Sep 17 00:00:00 2001 From: Mingli Li Date: Mon, 17 May 2021 12:47:09 -0400 Subject: [PATCH] unit test --- tests/core/tools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/tools.js b/tests/core/tools.js index d5b97ef1c31..02327efea14 100644 --- a/tests/core/tools.js +++ b/tests/core/tools.js @@ -892,7 +892,7 @@ var selectorWithSecondCharIsNotNumber = '-a'; var escapedSelectorWithSecondCharNotNumber = CKEDITOR.tools.escapeCss( selectorWithSecondCharIsNotNumber ); - assert.areSame( escapedSelectorWithSecondCharIsNumber, '-\\30 a', 'has U+002D in selector and second character and is in the range [0-9]' ); + assert.areSame( escapedSelectorWithSecondCharIsNumber, '-\\31 a', 'has U+002D in selector and second character and is in the range [0-9]' ); assert.areSame( escapedSelectorWithSecondCharNotNumber, '-a', 'has U+002D in selector and second character and is not in the range [0-9]' ); },