Skip to content

Commit

Permalink
beaker: make sure we grep the right project
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Dec 17, 2024
1 parent 6d0dc24 commit e587359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beaker-tests/Sanity/copr-cli-basic-operations/runtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e587359

Please sign in to comment.