diff --git a/tests/cli/test_compose_live-iso.sh b/tests/cli/test_compose_live-iso.sh index 8535ec23..15ee32b0 100755 --- a/tests/cli/test_compose_live-iso.sh +++ b/tests/cli/test_compose_live-iso.sh @@ -29,7 +29,7 @@ rlJournalStart rlPhaseStartTest "compose finished" if [ -n "$UUID" ]; then - until $CLI compose info $UUID | grep FINISHED; do + until $CLI compose details $UUID | grep FINISHED; do sleep 20 rlLogInfo "Waiting for compose to finish ..." done; diff --git a/tests/cli/test_compose_qcow2.sh b/tests/cli/test_compose_qcow2.sh index 52838542..00b877d4 100755 --- a/tests/cli/test_compose_qcow2.sh +++ b/tests/cli/test_compose_qcow2.sh @@ -54,7 +54,7 @@ __EOF__ rlPhaseStartTest "compose finished" if [ -n "$UUID" ]; then - until $CLI compose info $UUID | grep FINISHED; do + until $CLI compose details $UUID | grep FINISHED; do sleep 20 rlLogInfo "Waiting for compose to finish ..." done; diff --git a/tests/cli/test_compose_tar.sh b/tests/cli/test_compose_tar.sh index adb10fef..ecf60368 100755 --- a/tests/cli/test_compose_tar.sh +++ b/tests/cli/test_compose_tar.sh @@ -27,7 +27,7 @@ rlJournalStart rlPhaseStartTest "compose finished" if [ -n "$UUID" ]; then - until $CLI compose info $UUID | grep FINISHED; do + until $CLI compose details $UUID | grep FINISHED; do sleep 10 rlLogInfo "Waiting for compose to finish ..." done;