summary refs log tree commit diff stats
path: root/tests/compiler/tprefixmatches.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compiler/tprefixmatches.nim')
-rw-r--r--tests/compiler/tprefixmatches.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compiler/tprefixmatches.nim b/tests/compiler/tprefixmatches.nim
index a89a6f613..6a3186729 100644
--- a/tests/compiler/tprefixmatches.nim
+++ b/tests/compiler/tprefixmatches.nim
@@ -5,7 +5,7 @@ macro check(val, body: untyped): untyped =
   result = newStmtList()
   expectKind body, nnkStmtList
   for b in body:
-    expectKind b, nnkPar
+    expectKind b, nnkTupleConstr
     expectLen b, 2
     let p = b[0]
     let s = b[1]