From c73b425bc1119118c361cbeb9a017684bd4dcba5 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Sat, 27 Aug 2022 23:20:57 +0200 Subject: [PATCH] Fixing unit tests --- src/fastfield/gcd.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fastfield/gcd.rs b/src/fastfield/gcd.rs index 37fe38e41..84c46a47f 100644 --- a/src/fastfield/gcd.rs +++ b/src/fastfield/gcd.rs @@ -209,7 +209,7 @@ mod tests { #[test] fn test_fastfield_gcd_i64() -> crate::Result<()> { for &code_type in ALL_CODECS { - test_fastfield_gcd_i64_with_codec(code_type, 5005)?; + test_fastfield_gcd_i64_with_codec(code_type, 5500)?; } Ok(()) } @@ -250,7 +250,7 @@ mod tests { #[test] fn test_fastfield_gcd_u64() -> crate::Result<()> { for &code_type in ALL_CODECS { - test_fastfield_gcd_u64_with_codec(code_type, 5005)?; + test_fastfield_gcd_u64_with_codec(code_type, 5500)?; } Ok(()) }