summary refs log tree commit diff stats
path: root/tests/vm/tstringnil.nim
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-03-17 17:50:32 +0100
committerdef <dennis@felsin9.de>2015-03-17 17:50:32 +0100
commitfd4e6299057b0ce59a89553e7c32a9ea62da14db (patch)
tree45bb61ec52b415ffd07caae7c5b7fc10a0d99577 /tests/vm/tstringnil.nim
parent8e651fa0d456786df15445e10e14b9d4e96c21ff (diff)
downloadNim-fd4e6299057b0ce59a89553e7c32a9ea62da14db.tar.gz
Rename PNimrodNode to NimNode
Diffstat (limited to 'tests/vm/tstringnil.nim')
-rw-r--r--tests/vm/tstringnil.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vm/tstringnil.nim b/tests/vm/tstringnil.nim
index 61ce60ee5..bb546b698 100644
--- a/tests/vm/tstringnil.nim
+++ b/tests/vm/tstringnil.nim
@@ -8,9 +8,9 @@ type
     suiteDesc: string
     testName: string
     testDesc: string
-    testBlock: PNimrodNode
+    testBlock: NimNode
 
-proc buildSuiteContents(suiteName, suiteDesc, suiteBloc: PNimrodNode): tuple[tests: seq[SuiteTest]]  {.compileTime.} =
+proc buildSuiteContents(suiteName, suiteDesc, suiteBloc: NimNode): tuple[tests: seq[SuiteTest]]  {.compileTime.} =
   var
     tests:seq[SuiteTest] = @[]
 
@@ -40,7 +40,7 @@ proc buildSuiteContents(suiteName, suiteDesc, suiteBloc: PNimrodNode): tuple[tes
       discard
 
   return (tests: tests)
- 
+
 macro suite(suiteName, suiteDesc: expr, suiteBloc: stmt): stmt {.immediate.} =
   let contents = buildSuiteContents(suiteName, suiteDesc, suiteBloc)