Diffstat (limited to 'tests/protocol_visitor_sequence.rs')
| -rw-r--r-- | tests/protocol_visitor_sequence.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/protocol_visitor_sequence.rs b/tests/protocol_visitor_sequence.rs index 4b3e7ca..dbc613b 100644 --- a/tests/protocol_visitor_sequence.rs +++ b/tests/protocol_visitor_sequence.rs @@ -29,7 +29,10 @@ fn sequence_has_scope_with_size_hint_and_next() { visitor.expect_traits().once().return_const(None); // Get the next item in the sequence from the walker. - assert_eq!(scope.next(DynVisitor(&mut visitor)).into_value(), Flow::Done); + assert_eq!( + scope.next(DynVisitor(&mut visitor)).into_value(), + Flow::Done + ); // We are done. VisitResult::Control(Flow::Done) |