tamer: bench: xir: Fix broken benchmark

This broke when I removed `SelfClose`.  I used to run
`make all fmt check bench` before every push, but they take a while to run,
in part because it uses nightly and has to recompile too.

But it looks like I need to be more diligent again.
main
Mike Gerwitz 2021-09-21 16:09:50 -04:00
parent b348892276
commit aee781a6fb
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ This is pretend fragment text. We need a lot of it.</fragment>
Token::AttrValue(AttrValue::Escaped(val1), span),
Token::AttrName(attr2, span),
Token::AttrValue(AttrValue::Escaped(val2), span),
Token::SelfClose(span),
Token::Close(None, span),
]
.into_iter()
.write(&mut buf, Default::default())