diff options
author | Araq <rumpf_a@web.de> | 2012-08-16 19:05:38 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-08-16 19:05:38 +0200 |
commit | 0cac8d9b6fa2c982468899db109a964df979b186 (patch) | |
tree | 995c58c1e643d8177a183c951b7bd498f5cfbbc1 /tests/run | |
parent | e4c432387eb80817ed2557cfbd100be7fb0525e7 (diff) | |
download | Nim-0cac8d9b6fa2c982468899db109a964df979b186.tar.gz |
made tests green again
Diffstat (limited to 'tests/run')
-rw-r--r-- | tests/run/tstringinterp.nim | 2 |
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) |