summary refs log tree commit diff stats
path: root/tests/lexer/tstrlits.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lexer/tstrlits.nim')
-rw-r--r--tests/lexer/tstrlits.nim11
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/lexer/tstrlits.nim b/tests/lexer/tstrlits.nim
index cc8872f60..8e8250a5b 100644
--- a/tests/lexer/tstrlits.nim
+++ b/tests/lexer/tstrlits.nim
@@ -1,6 +1,5 @@
 discard """
-  file: "tstrlits.nim"
-  output: "a\"\"long string\"\"\"\"\"abc\"def_'2'●"
+  output: "a\"\"long string\"\"\"\"\"abc\"def_'2'●𝌆𝌆A"
 """
 # Test the new different string literals
 
@@ -11,14 +10,10 @@ const
 
   raw = r"abc""def"
 
-  escaped = "\x5f'\50'\u25cf"
+  escaped = "\x5f'\50'\u25cf\u{1D306}\u{1d306}\u{41}"
 
 
 stdout.write(rawQuote)
 stdout.write(tripleEmpty)
 stdout.write(raw)
-stdout.write(escaped)
-#OUT a""long string"""""abc"def
-
-
-
+stdout.writeLine(escaped)