From 0081964805421e81cfa804474b1005985d5c6278 Mon Sep 17 00:00:00 2001 From: Pauli Date: Wed, 25 Sep 2024 10:30:58 +1000 Subject: [PATCH] test: fix unit tests for fips CRNG tests To match changes in #25526 Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/25536) --- test/rand_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rand_test.c b/test/rand_test.c index c1d62e1d8f..d3dca252d5 100644 --- a/test/rand_test.c +++ b/test/rand_test.c @@ -177,7 +177,7 @@ int setup_tests(void) ADD_TEST(test_rand_uniform); if (OSSL_PROVIDER_available(NULL, "fips") - && fips_provider_version_ge(NULL, 3, 5, 0)) + && fips_provider_version_ge(NULL, 3, 4, 0)) ADD_TEST(fips_health_tests); return 1;