aboutsummaryrefslogtreecommitdiff
path: root/integration_tests
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-16 15:58:48 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 13:41:55 +0200
commit0c87a9ec25a45efc9b6b5ab7883cd19ded483909 (patch)
tree9db078c6f5b6f689ae406d8cce9625451bbcbbd1 /integration_tests
parent65aca9cbf0318bd3a2f936641b4f5bc3729c98c2 (diff)
feat: impl IntoIterator for AttributeMap
Making this change made me realize that adding an `impl IntoIterator for T` can be a breaking change if `impl IntoIterator for &T` already exists. See also the cargo-semver-checks issue[1] I filed about that. [1]: https://github.com/obi1kenobi/cargo-semver-checks/issues/518
Diffstat (limited to 'integration_tests')
-rw-r--r--integration_tests/tests/test_html5lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs
index a624c30..a0e934f 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(|attr| (attr.name().to_owned(), attr.value().to_owned()))
+ .map(|attr| (attr.name, attr.value))
.collect(),
self_closing: tag.self_closing,
}),