tests/prune.rs: fix compile error

This commit is contained in:
Dietmar Maurer 2020-06-23 11:32:38 +02:00
parent d6d3b353be
commit 0cf2b6441e
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ fn create_info(
partial: bool, partial: bool,
) -> BackupInfo { ) -> BackupInfo {
let backup_dir = BackupDir::parse(snapshot).unwrap(); let backup_dir: BackupDir = snapshot.parse().unwrap();
let mut files = Vec::new(); let mut files = Vec::new();