remove unwrap

This commit is contained in:
Cyryl Płotnicki 2021-02-06 16:40:32 +00:00
parent 1d29b33f90
commit 99e15dac10

View file

@ -19,7 +19,7 @@ mod must {
#[test]
fn restore_files_after_reopening_repository() -> Result<()> {
let source = TestSource::new().unwrap();
let source = TestSource::new()?;
let repository_path = random_in_memory_path("repository")?;
let restore_target = random_in_memory_path("target")?;