From f2dc90303034de9cb907ff0515618447734cdc3d Mon Sep 17 00:00:00 2001 From: lcharpentier-stm Date: Thu, 30 Nov 2023 08:59:13 +0100 Subject: [PATCH] test sign: fix syntax error fix syntax error (a space character is missing) making the test not ending correctly Signed-off-by: lcharpentier-stm --- test/integration/tests/sign.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/tests/sign.sh b/test/integration/tests/sign.sh index b08c5a980..7063da7ee 100644 --- a/test/integration/tests/sign.sh +++ b/test/integration/tests/sign.sh @@ -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