Add missing imports

This commit is contained in:
Philipp Oppermann
2019-04-22 22:49:03 +02:00
parent 028d31cc5b
commit 00b3ded7d6

View File

@@ -727,6 +727,8 @@ We can now add tests to our `basic_boot.rs`. For example, we can test that `prin
```rust ```rust
// in tests/basic_boot.rs // in tests/basic_boot.rs
use blog_os::{println, serial_print, serial_println};
#[test_case] #[test_case]
fn test_println() { fn test_println() {
serial_print!("test_println... "); serial_print!("test_println... ");