Skip to content

Commit 03528dd

Browse files
committed
Fix imports in tester tests
1 parent 81860b3 commit 03528dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example-kernels/tester/tests/integration_tests/test-basic-boot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![cfg_attr(not(test), no_main)] // disable all Rust-level entry points
33
#![cfg_attr(test, allow(unused_imports))]
44

5-
use testing::{exit_qemu, ExitCode};
5+
use tester::{exit_qemu, ExitCode};
66
use core::panic::PanicInfo;
77

88
/// This function is the entry point, since the linker looks for a function

example-kernels/tester/tests/integration_tests/test-panic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![cfg_attr(not(test), no_main)]
33
#![cfg_attr(test, allow(unused_imports))]
44

5-
use testing::{exit_qemu, ExitCode};
5+
use tester::{exit_qemu, ExitCode};
66
use core::panic::PanicInfo;
77

88
#[cfg(not(test))]

0 commit comments

Comments
 (0)