From ad29fe65fa8162fae2d972d77468432b920d01ce Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Fri, 31 Jul 2020 16:34:04 +0100 Subject: [PATCH] [functional-tests] Use thin_restore macro --- tests/common/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 37a3348..cf23480 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -90,7 +90,7 @@ pub fn mk_valid_md(td: &mut TestDir) -> Result { 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) }