Skip to content

Commit

Permalink
Fix test for Text.check
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Watson1978 committed Jul 11, 2024
1 parent 6d6400c commit 6059368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_text_check.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6059368

Please sign in to comment.