From 605936822573f03fbb83f55482254239e4fb3a18 Mon Sep 17 00:00:00 2001 From: Watson Date: Thu, 11 Jul 2024 18:23:21 +0900 Subject: [PATCH] Fix test for Text.check This patch will fix incorrect string in a case where unicode characters. Because of the use of single quotes, it was simply an ASCII string. --- test/test_text_check.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_text_check.rb b/test/test_text_check.rb index d4076edf..ba12fda2 100644 --- a/test/test_text_check.rb +++ b/test/test_text_check.rb @@ -85,7 +85,7 @@ def test_character_reference_hex_surrogate_block def test_entity_name_non_ascii_symbol # U+00BF INVERTED QUESTION MARK - assert_check_failed('&\u00BF;', '&') + assert_check_failed("&\u00BF;", '&') end end end