summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2024-02-11 18:14:30 +0100
committerTomas Mraz <tomas@openssl.org>2024-02-14 09:36:11 +0100
commitf7241edda4d9fc76f0ee134e6a07a76c6414b70a (patch)
tree0fb5414485a586bfef5cc2ca66fa8f39834a4d41 /test
parent09693750601e39574ca7ea335faacfb23bc7282b (diff)
Fix new typos found by codespell
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23545)
Diffstat (limited to 'test')
-rw-r--r--test/evp_libctx_test.c4
-rw-r--r--test/recipes/15-test_gensm2.t2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/evp_libctx_test.c b/test/evp_libctx_test.c
index 224e16b398..3d8cd53c43 100644
--- a/test/evp_libctx_test.c
+++ b/test/evp_libctx_test.c
@@ -83,14 +83,14 @@ static int test_evp_cipher_api_safety(void)
/*
* Ensure that EVP_CIPHER_get_block_size returns 0
- * if we haven't initalized the cipher in this context
+ * if we haven't initialized the cipher in this context
*/
if (!TEST_int_eq(EVP_CIPHER_CTX_get_block_size(ctx), 0))
goto err_free;
/*
* Ensure that EVP_CIPHER_get_iv_length returns 0
- * if we haven't initalized the cipher in this context
+ * if we haven't initialized the cipher in this context
*/
if (!TEST_int_eq(EVP_CIPHER_CTX_get_iv_length(ctx), 0))
goto err_free;
diff --git a/test/recipes/15-test_gensm2.t b/test/recipes/15-test_gensm2.t
index 1c4c01a248..62e21ff8d7 100644
--- a/test/recipes/15-test_gensm2.t
+++ b/test/recipes/15-test_gensm2.t
@@ -16,7 +16,7 @@ use OpenSSL::Test::Utils;
# These are special key generation tests for SM2 keys specifically,
# as they could be said to be a bit special in their encoding.
-# This is an auxilliary test to 15-test_genec.t
+# This is an auxiliary test to 15-test_genec.t
setup("test_gensm2");