From 9877e4c84d39e6f5d3ec30c10a5120302561abfc Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 20 Sep 2019 10:04:48 +0200 Subject: [PATCH] Add missing import of `serial_print` in Testing post --- blog/content/second-edition/posts/04-testing/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/04-testing/index.md b/blog/content/second-edition/posts/04-testing/index.md index 4c5512a2..009a4d15 100644 --- a/blog/content/second-edition/posts/04-testing/index.md +++ b/blog/content/second-edition/posts/04-testing/index.md @@ -880,7 +880,7 @@ Now we vastly simplify our `should_panic` test by removing the test runner relat #![no_main] use core::panic::PanicInfo; -use blog_os::{QemuExitCode, exit_qemu, serial_println}; +use blog_os::{exit_qemu, serial_print, serial_println, QemuExitCode}; #[no_mangle] pub extern "C" fn _start() -> ! {