summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFaustino Aguilar <faustinoaq@gmail.com>2018-05-17 15:03:36 +0000
committerGeorg Brandl <georg@python.org>2019-11-28 06:48:00 +0100
commit6a926bbf949a5f85f8fb13098a138e7c96260e13 (patch)
tree1fde2bc913717823e19d7f97b9141306f04169b3
parent2f00b79d1b1097bec90f406db68662353594c0b9 (diff)
downloadpygments-git-6a926bbf949a5f85f8fb13098a138e7c96260e13.tar.gz
Fix unicode character
-rw-r--r--tests/examplefiles/test.cr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examplefiles/test.cr b/tests/examplefiles/test.cr
index 79fc1711..baa52d98 100644
--- a/tests/examplefiles/test.cr
+++ b/tests/examplefiles/test.cr
@@ -1941,7 +1941,7 @@ r = %r(regex with slash: /)
"\u0041" # == "A"
"\u{41}" # == "A"
-"\u{1F52E}" # == "🔮"
+"\u{1F52E}" # == "🔮"
"hello
world" # same as "hello\n world"
@@ -2024,7 +2024,7 @@ b = 2
'\u0041' # == 'A'
'\u{41}' # == 'A'
-'\u{1F52E}' # == '🔮'
+'\u{1F52E}' # == '🔮'
{1 => 2, 3 => 4} # Hash(Int32, Int32)
{1 => 2, 'a' => 3} # Hash(Int32 | Char, Int32)