summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2019-02-02 12:51:59 +0100
committerDave Davenport <qball@gmpclient.org>2019-02-02 12:52:23 +0100
commit94ebd7e635a1246007e90eb00730dbf947872855 (patch)
tree8d59ce9ddee4cb757d52210fb075530aa756e7cf
parent60fb2c19c23aa13907c88fcb29eb2bd0553a343c (diff)
[Script] cleanup unnecessary $ from arithmetic variables.
-rwxr-xr-xtest/run_all_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_all_tests.sh b/test/run_all_tests.sh
index 62687d77..af702441 100755
--- a/test/run_all_tests.sh
+++ b/test/run_all_tests.sh
@@ -45,5 +45,5 @@ for test in "${tests[@]}"; do
exit ${ret}
fi
echo "PASS"
- display=$(( ${display} + 1 ))
+ display=$(( display + 1 ))
done