diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-12 09:26:06 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | a03cea75d9d120a7519be91ec872b143b5d74276 (patch) | |
tree | 5f8adef72451c035eb42ccad0b57f2146481c5a9 /tests | |
parent | 14bc6f2cceed0fa578d6a1195266885bf57a5d4c (diff) |
refactor: make TracingEmitter only work with usizes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_spans.rs | 2 |
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 |