summary refs log tree commit diff stats
path: root/tests/parser
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2018-04-04 15:37:07 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-04-04 15:37:07 +0200
commit5d46e1eaa2861b54b290b65f43056295aba953f8 (patch)
treec33a48a9f850f33b6104d8355b18b6a0ec9612a0 /tests/parser
parent7ef0cfebb56e3659f9c2fe07a2edafea96b0ff0d (diff)
downloadNim-5d46e1eaa2861b54b290b65f43056295aba953f8.tar.gz
Fixes #7473 (#7475)
* removed code duplication
* changelog entry, adopt tests for changes
Diffstat (limited to 'tests/parser')
-rw-r--r--tests/parser/tpostexprblocks.nim9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/parser/tpostexprblocks.nim b/tests/parser/tpostexprblocks.nim
index 3b9c956c2..e97b9c7ee 100644
--- a/tests/parser/tpostexprblocks.nim
+++ b/tests/parser/tpostexprblocks.nim
@@ -22,26 +22,26 @@ StmtList
         Empty
   Call
     Ident ident"foo070"
-    StrLit test
+    StrLit "test"
     StmtList
       DiscardStmt
         Empty
   Call
     Ident ident"foo080"
-    StrLit test
+    StrLit "test"
     StmtList
       DiscardStmt
         Empty
   Command
     Ident ident"foo090"
-    StrLit test
+    StrLit "test"
     StmtList
       DiscardStmt
         Empty
   Command
     Ident ident"foo100"
     Call
-      StrLit test
+      StrLit "test"
       StmtList
         DiscardStmt
           Empty
@@ -540,4 +540,3 @@ dumpTree:
   foo380.add((quote do:
     discard
   )[0])
-