lib/tests: Use standard test syntax

For consistency.
This commit is contained in:
Victor Engmark 2021-11-26 11:03:40 +13:00
parent b8f8589e9a
commit 44a15ab801

View File

@ -290,7 +290,7 @@ $pass Pass
$fail Fail
EOF
if test $fail -ne 0; then
if [ "$fail" -ne 0 ]; then
exit 1
fi
exit 0