Skip to content

Commit

Permalink
test sign: fix syntax error
Browse files Browse the repository at this point in the history
fix syntax error (a space character is missing) making the test not ending correctly

Signed-off-by: lcharpentier-stm <[email protected]>
  • Loading branch information
lcharpentier-stm authored and JuergenReppSIT committed Mar 20, 2024
1 parent 31aa3d2 commit f2dc903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/tests/sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ trap - ERR

tpm2 sign -Q -p "badpassword" -c $file_signing_key_ctx -g $alg_hash \
-o $file_output_data $file_input_data
if [ $? != 3]; then
if [ $? != 3 ]; then
echo "Expected RC 3, got: $?" 1>&2
fi
trap onerror ERR
Expand Down

0 comments on commit f2dc903

Please sign in to comment.