Skip to content

Commit b5bfd40

Browse files
committed
Patch out the choice_multiple test
1 parent 1aa88b5 commit b5bfd40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xml_schema/tests/choice.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ fn choice_multiple() {
9090
let sample_1: Person = from_str(xml_1).unwrap();
9191

9292
let model = Person {
93-
firstnames: vec!["John".to_string()],
94-
lastnames: vec![],
93+
firstname: "John".to_string(),
94+
lastname: "".to_string(),
9595
};
9696

9797
assert_eq!(sample_1, model);

0 commit comments

Comments
 (0)