Skip to content

Commit 36a71a3

Browse files
committed
Format code
1 parent 37e3d6c commit 36a71a3

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

tests/runner/src/lib.rs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
use std::{io::Write, path::{Path, PathBuf}, process::Command};
1+
use std::{
2+
io::Write,
3+
path::{Path, PathBuf},
4+
process::Command,
5+
};
26

37
const QEMU_ARGS: &[&str] = &[
48
"-device",
@@ -17,7 +21,10 @@ pub fn run_test_kernel_with_ramdisk(kernel_binary_path: &str, ramdisk_path: Opti
1721
run_test_kernel_with_ramdisk_internal(&kernel_path_buf, ramdisk_path_buf)
1822
}
1923

20-
fn run_test_kernel_with_ramdisk_internal(kernel_path_buf: &PathBuf, ramdisk_path_buf: Option<&PathBuf>) {
24+
fn run_test_kernel_with_ramdisk_internal(
25+
kernel_path_buf: &PathBuf,
26+
ramdisk_path_buf: Option<&PathBuf>,
27+
) {
2128
use bootloader::DiskImageBuilder;
2229

2330
let mut image_builder = DiskImageBuilder::new(&kernel_path_buf);

0 commit comments

Comments
 (0)