Skip to content

Commit

Permalink
chore(test): lower p_value_limit to decrease test failure probability
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeul-zama committed Nov 15, 2024
1 parent f9e8df4 commit f725395
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tfhe/src/integer/oprf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tfhe/src/shortint/oprf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f725395

Please sign in to comment.