summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-06-17 14:16:01 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-06-17 14:16:01 +0200
commitdbcdc4331a2d87aafa06ce49d50277474595064d (patch)
tree9cb53fa1163f6d3f5e4b815e91397fc7207e32ba /tests
parentc70706f4bd672487293b82fd5b1a0ddfbb3a6a78 (diff)
downloadNim-dbcdc4331a2d87aafa06ce49d50277474595064d.tar.gz
testament: minor code formating change
Diffstat (limited to 'tests')
-rw-r--r--tests/testament/tester.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim
index 0185156ec..0764b6363 100644
--- a/tests/testament/tester.nim
+++ b/tests/testament/tester.nim
@@ -129,7 +129,7 @@ proc callCCompiler(cmdTemplate, filename, options: string,
   let c = parseCmdLine(cmdTemplate % ["target", targetToCmd[target],
                        "options", options, "file", filename.quoteShell,
                        "filedir", filename.getFileDir()])
-  var p = startProcess(command="gcc", args=c[5.. ^1],
+  var p = startProcess(command="gcc", args=c[5 .. ^1],
                        options={poStdErrToStdOut, poUsePath})
   let outp = p.outputStream
   var x = newStringOfCap(120)