From 722d99ed3c4b808edc5002d90a0c66a0028f1c6a Mon Sep 17 00:00:00 2001 From: Ramkumar Chinchani Date: Sat, 23 Mar 2024 03:38:59 +0000 Subject: [PATCH] ci: fix a failing test Looks like missed one more place Signed-off-by: Ramkumar Chinchani --- test/bom.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bom.bats b/test/bom.bats index 7f19f971..ae1fca48 100644 --- a/test/bom.bats +++ b/test/bom.bats @@ -70,9 +70,9 @@ EOF run stacker build --substitute CENTOS_OCI=${CENTOS_OCI} [ "$status" -ne 0 ] # a full inventory for this image - [ -f .stacker/artifacts/first/inventory.json ] + [ -f .stacker/artifacts/bom-parent/inventory.json ] # sbom for this image shouldn't be generated - [ ! -a .stacker/artifacts/first/first.json ] + [ ! -a .stacker/artifacts/bom-parent/first.json ] # building a second time also fails due to missed cache run stacker build [ "$status" -ne 0 ]