Skip to content

Commit e84b640

Browse files
committed
Running cargo fmt
1 parent f300b76 commit e84b640

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
@@ -90,14 +90,14 @@ mod pci;
9090
mod pi;
9191
mod rng;
9292
mod scsi;
93-
mod shell_params;
9493
#[cfg(any(
9594
target_arch = "x86",
9695
target_arch = "x86_64",
9796
target_arch = "arm",
9897
target_arch = "aarch64"
9998
))]
10099
mod shell;
100+
mod shell_params;
101101
mod shim;
102102
mod string;
103103
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)