diff --git a/tests/e2e_test.rs b/tests/e2e_test.rs index 97d4bfa..f04c926 100644 --- a/tests/e2e_test.rs +++ b/tests/e2e_test.rs @@ -7,16 +7,16 @@ use std::fmt::Debug; use std::{cmp, fmt}; fn convert_from_into(cloud: Vec

) - where - C: FallibleIterator +where + C: FallibleIterator + TryFrom + TryFrom> + TryInto, - ::Error: Debug, - >::Error: Debug, - >::Error: Debug, - >>::Error: Debug, - P: Clone + fmt::Debug + cmp::PartialEq, + ::Error: Debug, + >::Error: Debug, + >::Error: Debug, + >>::Error: Debug, + P: Clone + fmt::Debug + cmp::PartialEq, { let copy = cloud.clone(); let msg: Result = C::try_from(cloud).unwrap().try_into();