From 00b3ded7d6534c959a210703e33aae0366b6180b Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 22 Apr 2019 22:49:03 +0200 Subject: [PATCH] Add missing imports --- blog/content/second-edition/posts/04-testing/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blog/content/second-edition/posts/04-testing/index.md b/blog/content/second-edition/posts/04-testing/index.md index 3d5eb457..7a251f5c 100644 --- a/blog/content/second-edition/posts/04-testing/index.md +++ b/blog/content/second-edition/posts/04-testing/index.md @@ -727,6 +727,8 @@ We can now add tests to our `basic_boot.rs`. For example, we can test that `prin ```rust // in tests/basic_boot.rs +use blog_os::{println, serial_print, serial_println}; + #[test_case] fn test_println() { serial_print!("test_println... ");