Fixing unit tests

This commit is contained in:
Paul Masurel
2022-08-27 23:20:57 +02:00
parent 54cfd0d154
commit c73b425bc1

View File

@@ -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(())
}