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... ");