From 402905ccb6512b60dacb7f7a2a683c82bdd61691 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 19 Sep 2019 08:03:52 -0400 Subject: [PATCH] test: partial save missed with #33 Signed-off-by: Vincent Batts --- test/02-from_image_ref.bats | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/02-from_image_ref.bats b/test/02-from_image_ref.bats index 0acb9f5..3925456 100644 --- a/test/02-from_image_ref.bats +++ b/test/02-from_image_ref.bats @@ -3,7 +3,10 @@ load helpers @test "Build from image reference" { - d=$(mktemp -d) + local d + d=$(mktemp -d) + echo "temporary directory: ${d}" + ref="registry.fedoraproject.org/fedora-minimal" run_ctr -v ${d}:/output/ $CTR_IMAGE -i "${ref}" [ "$status" -eq 0 ]