summaryrefslogtreecommitdiffstats
path: root/test/param_build_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/param_build_test.c')
-rw-r--r--test/param_build_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/param_build_test.c b/test/param_build_test.c
index bfa463acc5..c54cfd200e 100644
--- a/test/param_build_test.c
+++ b/test/param_build_test.c
@@ -294,7 +294,7 @@ static int builder_limit_test(void)
}
if (!TEST_ptr(params = OSSL_PARAM_BLD_to_param(bld)))
goto err;
- /* Count the elements in the params arrary, expecting n */
+ /* Count the elements in the params array, expecting n */
for (i = 0; params[i].key != NULL; i++);
if (!TEST_int_eq(i, n))
goto err;
@@ -306,7 +306,7 @@ static int builder_limit_test(void)
if (!TEST_true(OSSL_PARAM_BLD_push_int(bld, "g", 2))
|| !TEST_ptr(params = OSSL_PARAM_BLD_to_param(bld)))
goto err;
- /* Count the elements in the params arrary, expecting 1 */
+ /* Count the elements in the params array, expecting 1 */
for (i = 0; params[i].key != NULL; i++);
if (!TEST_int_eq(i, 1))
goto err;