Fix clippy warning on test

This commit is contained in:
Matt Gathu 2020-09-25 17:10:42 +02:00
parent 86af8b6e89
commit 6fc976984c
1 changed files with 2 additions and 2 deletions

View File

@ -394,7 +394,7 @@ mod tests {
root.finish(Rc::clone(&root)); root.finish(Rc::clone(&root));
let output = format!("{:?}", root); let output = format!("{:?}", root);
assert!(output.starts_with("ResourceMap")); assert!(output.starts_with("ResourceMap {"));
assert!(output.ends_with(" }")); assert!(output.ends_with(" }"));
} }
} }