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 08c9d24 commit d03b772Copy full SHA for d03b772
src/docbuilder/rustwide_builder.rs
@@ -1496,11 +1496,13 @@ mod tests {
1496
assert!(storage.get_public_access(&path)?);
1497
1498
let json_prefix = format!("rustdoc-json/{crate_}/{version}/{target}/");
1499
- let mut json_files: Vec<_> = storage
1500
- .list_prefix(&json_prefix)
1501
- .filter_map(|res| res.ok())
1502
- .map(|f| f.strip_prefix(&json_prefix).unwrap().to_owned())
1503
- .collect();
+ let mut json_files: Vec<_> = dbg!(
+ storage
+ .list_prefix(&json_prefix)
+ .filter_map(|res| res.ok())
+ .map(|f| f.strip_prefix(&json_prefix).unwrap().to_owned())
1504
+ .collect()
1505
+ );
1506
json_files.sort();
1507
assert!(
1508
json_files[0].starts_with(&format!("empty-library_1.0.0_{target}_"))
0 commit comments