aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-09-12 09:26:06 +0200
committerMartin Fischer <martin@push-f.com>2023-09-28 10:36:08 +0200
commita03cea75d9d120a7519be91ec872b143b5d74276 (patch)
tree5f8adef72451c035eb42ccad0b57f2146481c5a9 /tests
parent14bc6f2cceed0fa578d6a1195266885bf57a5d4c (diff)
refactor: make TracingEmitter only work with usizes
Diffstat (limited to 'tests')
-rw-r--r--tests/test_spans.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_spans.rs b/tests/test_spans.rs
index fdb9a78..71a6c4b 100644
--- a/tests/test_spans.rs
+++ b/tests/test_spans.rs
@@ -20,7 +20,7 @@ use similar_asserts::assert_eq;
type Parser = NaiveParser<
PosTrackingReader<Box<dyn Reader<Error = Infallible>>>,
usize,
- html5tokenizer::TracingEmitter<usize>,
+ html5tokenizer::TracingEmitter,
>;
fn parser<R>(reader: impl IntoReader<'static, Reader = R>) -> Parser