We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7ca2e1 commit 5fa9f12Copy full SHA for 5fa9f12
src/book/book.rs
@@ -657,8 +657,8 @@ And here is some \
657
assert!(got.is_err());
658
let error_message = got.err().unwrap().to_string();
659
let expeceted = format!(
660
- r#"Couldn't open SUMMARY.md in "{}" directory"#,
661
- temp_dir.path().display()
+ r#"Couldn't open SUMMARY.md in {:?} directory"#,
+ temp_dir.path()
662
);
663
assert_eq!(error_message, expeceted);
664
}
0 commit comments