From e5873591a6f83bde2db02b5b3a5ae252f8a2ccb6 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sun, 1 Dec 2024 19:08:41 +0100 Subject: [PATCH] beaker: make sure we grep the right project --- beaker-tests/Sanity/copr-cli-basic-operations/runtest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beaker-tests/Sanity/copr-cli-basic-operations/runtest.sh b/beaker-tests/Sanity/copr-cli-basic-operations/runtest.sh index a004eeb50..dad38c6fb 100755 --- a/beaker-tests/Sanity/copr-cli-basic-operations/runtest.sh +++ b/beaker-tests/Sanity/copr-cli-basic-operations/runtest.sh @@ -313,9 +313,9 @@ rlJournalStart # test unlisted_on_hp project attribute rlRun "copr-cli create --unlisted-on-hp on --chroot $CHROOT ${NAME_PREFIX}Project7" - rlRun "curl $FRONTEND_URL --silent | grep Project7" 1 # project won't be present on hp + rlRun "curl $FRONTEND_URL --silent | grep ${NAME_PREFIX}Project7" 1 # project won't be present on hp rlRun "copr-cli modify --unlisted-on-hp off ${NAME_PREFIX}Project7" - rlRun "curl $FRONTEND_URL --silent | grep Project7" 0 # project should be visible on hp now + rlRun "curl $FRONTEND_URL --silent | grep ${NAME_PREFIX}Project7" 0 # project should be visible on hp now # FIXME It is now not possible to update whoosh index on demand # Instead, it is periodically recreated via cron