From cd11035a69445be57f10fe116c9a0f0d5f4d5fe1 Mon Sep 17 00:00:00 2001 From: Michael Bryan Date: Sun, 9 Jul 2017 18:24:45 +0800 Subject: [PATCH] trivial change to make travis run again --- tests/integration_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 07a6dcf8..ca9b6c86 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -66,7 +66,7 @@ fn mdbook_can_correctly_test_a_passing_book() { #[test] fn mdbook_detects_book_with_failing_tests() { let temp = create_book(false); - let mut md = MDBook::new(temp.path()); + let mut md: MDBook = MDBook::new(temp.path()); assert!(md.test().is_err()); }