From 23c5a2379c25fd211162c82cb0637eed852565b7 Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Sat, 3 Dec 2022 20:18:15 +0100 Subject: [PATCH] test: fix private_keys test --- test/tests/private_keys/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/tests/private_keys/run.sh b/test/tests/private_keys/run.sh index 5ff2ee1..2bd7b68 100755 --- a/test/tests/private_keys/run.sh +++ b/test/tests/private_keys/run.sh @@ -27,9 +27,9 @@ trap cleanup EXIT declare -A key_types key_types=( \ - ['2048']='RSA Public-Key: (2048 bit)' \ - ['3072']='RSA Public-Key: (3072 bit)' \ - ['4096']='RSA Public-Key: (4096 bit)' \ + ['2048']='Public-Key: (2048 bit)' \ + ['3072']='Public-Key: (3072 bit)' \ + ['4096']='Public-Key: (4096 bit)' \ ['ec-256']='prime256v1' \ ['ec-384']='secp384r1' \ )