From f47b8f8a2de63b529a2d98dd7a2c861efb88b3c8 Mon Sep 17 00:00:00 2001 From: Zach Ramsay Date: Thu, 4 Jan 2018 15:41:25 +0000 Subject: [PATCH] use sha256sum because more secure --- tests/test_cli/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cli/test.sh b/tests/test_cli/test.sh index ed00b9d72..dcf2dcc8b 100755 --- a/tests/test_cli/test.sh +++ b/tests/test_cli/test.sh @@ -20,8 +20,8 @@ function testExample() { abci-cli --log_level=error --verbose batch < "$INPUT" > "${INPUT}.out.new" killall "$3" - pre=$(shasum < "${INPUT}.out") - post=$(shasum < "${INPUT}.out.new") + pre=$(sha256sum < "${INPUT}.out") + post=$(sha256sum < "${INPUT}.out.new") if [[ "$pre" != "$post" ]]; then echo "You broke the tutorial"