From b1ca805d2ae30e2e3f23ae3814404f3d4c27a2d9 Mon Sep 17 00:00:00 2001 From: Will Crichton Date: Mon, 7 Nov 2022 14:08:31 -0800 Subject: [PATCH] Fix tests --- tests/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/init.rs b/tests/init.rs index 4deb8401..1c3b962b 100644 --- a/tests/init.rs +++ b/tests/init.rs @@ -95,7 +95,7 @@ fn run_mdbook_init_with_custom_book_and_src_locations() { let contents = fs::read_to_string(temp.path().join("book.toml")).unwrap(); assert_eq!( contents, - "[book]\nauthors = []\nlanguage = \"en\"\nmultilingual = false\nsrc = \"in\"\n\n[build]\nbuild-dir = \"out\"\ncreate-missing = true\nuse-default-preprocessors = true\n" + "[book]\nauthors = []\nlanguage = \"en\"\nmultilingual = false\nsrc = \"in\"\n\n[build]\nbuild-dir = \"out\"\ncreate-missing = true\nextra-watch-dirs = []\nuse-default-preprocessors = true\n" ); }