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 6014307 commit 0bd6c96Copy full SHA for 0bd6c96
src/cache/cache.rs
@@ -894,7 +894,11 @@ mod test {
894
optional: false,
895
}];
896
let result = cache_read.extract_objects(objects, pool).await;
897
- assert!(result.is_ok(), "Extracting to /dev/fd/{} should succeed", raw_fd);
+ assert!(
898
+ result.is_ok(),
899
+ "Extracting to /dev/fd/{} should succeed",
900
+ raw_fd
901
+ );
902
let mut buf = vec![0; data.len()];
903
let n = receiver.read_exact(&mut buf).await.unwrap();
904
assert_eq!(n, data.len(), "Read the correct number of bytes");
0 commit comments