Skip to content

Commit 424f632

Browse files
committed
clippy: Restore doesn't return stats at present
1 parent a3712f8 commit 424f632

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/restore.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,15 +565,14 @@ mod test {
565565
.insert(Apath::from("/subdir"), io::ErrorKind::PermissionDenied);
566566
let restore_tmp = TempDir::new().unwrap();
567567
let monitor = TestMonitor::arc();
568-
let stats = restore(
568+
restore(
569569
&archive,
570570
restore_tmp.path(),
571571
restore_options,
572572
monitor.clone(),
573573
)
574574
.await
575575
.expect("Restore");
576-
dbg!(&stats);
577576
let errors = monitor.take_errors();
578577
dbg!(&errors);
579578
assert_eq!(errors.len(), 2);

0 commit comments

Comments
 (0)