commit 4e40e8babeca81849a7e34b4953a8236bd8069c9 parent 077321ef9a0cce72fd0444350831778d8b117d3f Author: William Casarin <jb55@jb55.com> Date: Tue, 19 Dec 2017 15:06:10 -0800 test: subtract 1 for header Diffstat:
M | test/run | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/run b/test/run @@ -1,7 +1,7 @@ #!/usr/bin/env bash n=1 -c=$(wc -l < tests.csv) +c=$(($(wc -l < tests.csv) - 1)) fail=0 printf "1..%d\n" "$c"