remove unwrap
This commit is contained in:
parent
1d29b33f90
commit
99e15dac10
1 changed files with 1 additions and 1 deletions
|
@ -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")?;
|
||||
|
||||
|
|
Loading…
Reference in a new issue