Skip to content

Commit fe6eca9

Browse files
committed
Running cargo fmt
1 parent 293a5b2 commit fe6eca9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

uefi-test-runner/src/proto/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ mod nvme;
8585
mod pi;
8686
mod rng;
8787
mod scsi;
88-
mod shell_params;
8988
#[cfg(any(
9089
target_arch = "x86",
9190
target_arch = "x86_64",
9291
target_arch = "arm",
9392
target_arch = "aarch64"
9493
))]
9594
mod shell;
95+
mod shell_params;
9696
mod shim;
9797
mod string;
9898
mod tcg;

uefi-test-runner/src/proto/shell.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
use uefi::CStr16;
21
use uefi::boot;
32
use uefi::proto::shell::Shell;
3+
use uefi::CStr16;
44

55
pub fn test() {
66
info!("Running shell protocol tests");
77

88
let handle = boot::get_handle_for_protocol::<Shell>().expect("No Shell handles");
99

10-
let mut shell = boot::open_protocol_exclusive::<Shell>(handle)
11-
.expect("Failed to open Shell protocol");
10+
let mut shell =
11+
boot::open_protocol_exclusive::<Shell>(handle).expect("Failed to open Shell protocol");
1212

1313
// create some files
1414
let mut test_buf = [0u16; 12];

0 commit comments

Comments
 (0)