Skip to content

Commit d03b772

Browse files
committed
debug
1 parent 08c9d24 commit d03b772

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/docbuilder/rustwide_builder.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1496,11 +1496,13 @@ mod tests {
14961496
assert!(storage.get_public_access(&path)?);
14971497

14981498
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();
1499+
let mut json_files: Vec<_> = dbg!(
1500+
storage
1501+
.list_prefix(&json_prefix)
1502+
.filter_map(|res| res.ok())
1503+
.map(|f| f.strip_prefix(&json_prefix).unwrap().to_owned())
1504+
.collect()
1505+
);
15041506
json_files.sort();
15051507
assert!(
15061508
json_files[0].starts_with(&format!("empty-library_1.0.0_{target}_"))

0 commit comments

Comments
 (0)