We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e256ee2 commit f5ccaa6Copy full SHA for f5ccaa6
1 file changed
src/dev.rs
@@ -2952,7 +2952,9 @@ mod tests {
2952
rt.block_on(async move {
2953
let size = 64_u64 << 20;
2954
let img_file = make_temp_qcow2_img(size, 16, 4);
2955
- let io = Qcow2IoTokio::new(&img_file.path().to_path_buf(), true, false).await;
+ let io = Qcow2IoTokio::new(&img_file.path().to_path_buf(), true, false)
2956
+ .await
2957
+ .unwrap();
2958
let mut buf = Qcow2IoBuf::<u8>::new(4096);
2959
let _ = io.read_to(0, &mut buf).await;
2960
let header = Qcow2Header::from_buf(&buf).unwrap();
0 commit comments