Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix downloading multiple packages of the same NEVRA test
By default re.search() (used by "stdout does not contain") does not match across multiple lines. To bypass this limitation and check that the package name is not present on multiple lines, use "(.|\n)*" pattern instead of ".*". Before this patch, the step didn't actually test anything and would always pass.
- Loading branch information