[functional-tests] Use thin_restore macro

This commit is contained in:
Joe Thornber 2020-07-31 16:34:04 +01:00
parent baf1fe325f
commit ad29fe65fa
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ pub fn mk_valid_md(td: &mut TestDir) -> Result<PathBuf> {
write_xml(&xml, &mut gen)?;
let _file = file_utils::create_sized_file(&md, 4096 * 4096);
cmd!("bin/thin_restore", "-i", xml, "-o", &md).run()?;
thin_restore!("-i", xml, "-o", &md).run()?;
Ok(md)
}