Browse Source

fix test

pull/1780/head
Ethan Buchman 9 years ago
parent
commit
36e89b606e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test.sh

+ 2
- 2
test.sh View File

@ -67,8 +67,8 @@ STDIN`
# echo $?
HASH1=`echo "$OUTPUT" | tail -n +2 | head -n 1`
if [[ "${HASH1:0:2}" != "00" ]]; then
echo "Expected opening hash to lead with 00. Got $HASH1"
if [[ "$HASH1" != "" ]]; then
echo "Expected opening hash to be empty. Got $HASH1"
exit 1
fi


Loading…
Cancel
Save