Skip to content

Commit

Permalink
remove assert and print
Browse files Browse the repository at this point in the history
  • Loading branch information
k-bx committed Oct 30, 2023
1 parent 54976c4 commit 3591ad0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1693,13 +1693,10 @@ mod tests {
#[test]
fn test_parse_style_merging() {
let kml_str = include_str!("../tests/fixtures/style-merging.kml");
let res = Kml::<f64>::from_str(kml_str).unwrap();
println!("{res:#?}");

assert!(matches!(
Kml::<f64>::from_str(kml_str).unwrap(),
Kml::KmlDocument(_)
));
assert_eq!(true, false);
}
}

0 comments on commit 3591ad0

Please sign in to comment.