diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-16 09:45:18 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:41:55 +0200 |
commit | 65aca9cbf0318bd3a2f936641b4f5bc3729c98c2 (patch) | |
tree | 3bf6ae3ea03c1f377e9b4bd6fd7d6af99fbddc5a /integration_tests/tests | |
parent | 0f460c2e77f450a2bac68eec97b2c62aa33c0495 (diff) |
break!: introduce AttributeMap
This has a number of benefits:
* it hides the implementation of the map
* it hides the type used for the map values
(which lets us e.g. change name_span to name_offset while still
being able to provide a convenient `Attribute::name_span` method.)
* it lets us provide convenience impls for the map
such as `FromIterator<(String, String)>`
Diffstat (limited to 'integration_tests/tests')
-rw-r--r-- | integration_tests/tests/test_html5lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index 0f96063..a624c30 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -129,7 +129,7 @@ fn run_test_inner<R: Reader>( attributes: tag .attributes .into_iter() - .map(|(name, map_val)| (name, map_val.value)) + .map(|attr| (attr.name().to_owned(), attr.value().to_owned())) .collect(), self_closing: tag.self_closing, }), |