summary refs log tree commit diff stats
path: root/tests/run
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-08-16 19:05:38 +0200
committerAraq <rumpf_a@web.de>2012-08-16 19:05:38 +0200
commit0cac8d9b6fa2c982468899db109a964df979b186 (patch)
tree995c58c1e643d8177a183c951b7bd498f5cfbbc1 /tests/run
parente4c432387eb80817ed2557cfbd100be7fb0525e7 (diff)
downloadNim-0cac8d9b6fa2c982468899db109a964df979b186.tar.gz
made tests green again
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/tstringinterp.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/tstringinterp.nim b/tests/run/tstringinterp.nim
index 423e7bb61..676e7ea1d 100644
--- a/tests/run/tstringinterp.nim
+++ b/tests/run/tstringinterp.nim
@@ -5,7 +5,7 @@ discard """
 
 import macros, parseutils, strutils
 
-proc concat(strings: openarray[string]): string =
+proc concat(strings: varargs[string]): string =
   result = newString(0)
   for s in items(strings): result.add(s)