Diffstat (limited to 'tests/protocol_walker_hint.rs')
| -rw-r--r-- | tests/protocol_walker_hint.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/protocol_walker_hint.rs b/tests/protocol_walker_hint.rs index 4cb41dd..75c8d94 100644 --- a/tests/protocol_walker_hint.rs +++ b/tests/protocol_walker_hint.rs @@ -73,7 +73,10 @@ fn can_get_known_and_hint() { let mut mock = MockBuilder::<(), (), ()>::new(); // We can call hint to "commit" to the protocol and ask the walker to use it. - assert_eq!(walker.hint(DynVisitor(&mut mock), Hint(123)).value(), Flow::Done); + assert_eq!( + walker.hint(DynVisitor(&mut mock), Hint(123)).value(), + Flow::Done + ); } } |