Arithmetic tests: Remove redundant vec!.

This commit is contained in:
Brian Smith 2020-11-11 12:12:15 -08:00
parent bd39a3c1c2
commit 1f11e13c96

View File

@ -1528,7 +1528,7 @@ mod tests {
#[test]
fn test_modulus_debug() {
let (modulus, _) = Modulus::<M>::from_be_bytes_with_bit_length(untrusted::Input::from(
&vec![0xff; LIMB_BYTES * MODULUS_MIN_LIMBS],
&[0xff; LIMB_BYTES * MODULUS_MIN_LIMBS],
))
.unwrap();
assert_eq!("Modulus", format!("{:?}", modulus));