Diffstat (limited to 'tests/common/protocol/tag.rs')
-rw-r--r--tests/common/protocol/tag.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common/protocol/tag.rs b/tests/common/protocol/tag.rs
index 4c17eda..96e75b2 100644
--- a/tests/common/protocol/tag.rs
+++ b/tests/common/protocol/tag.rs
@@ -51,8 +51,8 @@ where
T: AsVisitor<'ctx, Blocking>,
{
fn visit_tag_and_done<'a, const TAG: u64, W: Walker<'ctx, Blocking>>(&'a mut self, walker: W) {
- let result =
- visit_tag::<TagConst<TAG>, Blocking, _>(TagConst, self.as_visitor(), walker).into_value();
+ let result = visit_tag::<TagConst<TAG>, Blocking, _>(TagConst, self.as_visitor(), walker)
+ .into_value();
assert_eq!(result.unwrap(), VisitResult::Control(Flow::Done));
}