We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c125c commit 016e890Copy full SHA for 016e890
uefi-test-runner/src/boot/mod.rs
@@ -60,17 +60,20 @@ fn test_load_image(bt: &BootServices) {
60
"{:#?}",
61
image_device_path
62
.to_text_by_node(bt)
63
- // CString16 -> Rust String
+ // CString16 -> Rust String
64
.unwrap()
65
.iter()
66
.map(|(a, b)| (a, b.to_string()))
67
.collect::<alloc::vec::Vec<_>>()
68
);
69
- log::debug!("{:#?}", image_device_path.to_text(bt).unwrap()
70
71
- .iter()
72
- .map(|a| a.to_string())
73
- .collect::<alloc::vec::Vec<_>>());
+ log::debug!(
+ "{:#?}",
+ image_device_path
+ .to_text(bt)
+ .unwrap()
74
75
+ .to_string()
76
+ );
77
}
78
79
// Get the file-path portion of the device path which is typically behind
0 commit comments