diff --git a/tfhe/src/integer/oprf.rs b/tfhe/src/integer/oprf.rs index be17ee1342..03d2507747 100644 --- a/tfhe/src/integer/oprf.rs +++ b/tfhe/src/integer/oprf.rs @@ -299,7 +299,7 @@ pub(crate) mod test { fn oprf_test_uniformity_ci_run_filter() { let sample_count: usize = 10_000; - let p_value_limit: f64 = 0.001; + let p_value_limit: f64 = 0.000_01; let random_bits_count = 3; diff --git a/tfhe/src/shortint/oprf.rs b/tfhe/src/shortint/oprf.rs index 35e0f559bf..066b7d0d8b 100644 --- a/tfhe/src/shortint/oprf.rs +++ b/tfhe/src/shortint/oprf.rs @@ -265,7 +265,7 @@ pub(crate) mod test { fn oprf_test_uniformity_ci_run_filter() { let sample_count: usize = 100_000; - let p_value_limit: f64 = 0.001; + let p_value_limit: f64 = 0.000_01; use crate::shortint::gen_keys; use crate::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS;