minidom: Handle Node::Comment in PartialEq

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2019-12-07 17:32:48 +01:00 committed by Maxime Buquet
parent fd2bd2468d
commit c9e6e3d095

View file

@ -214,6 +214,8 @@ impl PartialEq for Node {
match (self, other) { match (self, other) {
(&Node::Element(ref elem1), &Node::Element(ref elem2)) => elem1 == elem2, (&Node::Element(ref elem1), &Node::Element(ref elem2)) => elem1 == elem2,
(&Node::Text(ref text1), &Node::Text(ref text2)) => text1 == text2, (&Node::Text(ref text1), &Node::Text(ref text2)) => text1 == text2,
#[cfg(feature = "comments")]
(&Node::Comment(ref text1), &Node::Comment(ref text2)) => text1 == text2,
_ => false, _ => false,
} }
} }