Fix some xml tests

This commit is contained in:
Lennart
2025-01-12 13:39:34 +01:00
parent a23e52f361
commit ed84475d71
4 changed files with 11 additions and 20 deletions

View File

@@ -53,16 +53,10 @@ fn propfind_prop() {
assert_eq!(
propfind,
PropfindElement {
prop: PropfindType::Prop(PropElement {
prop: vec![
Propname {
name: "displayname".to_owned()
},
Propname {
name: "color".to_owned()
},
]
})
prop: PropfindType::Prop(PropElement(vec![
Propname("displayname".to_owned()),
Propname("color".to_owned()),
]))
}
);
}