Skip to content

Commit

Permalink
Patch out the choice_multiple test
Browse files Browse the repository at this point in the history
  • Loading branch information
matzipan committed Jan 3, 2024
1 parent 1aa88b5 commit b5bfd40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xml_schema/tests/choice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ fn choice_multiple() {
let sample_1: Person = from_str(xml_1).unwrap();

let model = Person {
firstnames: vec!["John".to_string()],
lastnames: vec![],
firstname: "John".to_string(),
lastname: "".to_string(),
};

assert_eq!(sample_1, model);
Expand Down

0 comments on commit b5bfd40

Please sign in to comment.