AD integration test - package found if not none

Fix logic error.
This commit is contained in:
Carlos Nihelton 2023-03-03 15:29:00 -03:00
parent 28f6c29ca1
commit 121cf3a18a
No known key found for this signature in database
GPG Key ID: 6FE346D245197E9A
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ async def main() -> None:
for line in lines:
for pack in packages_lookup:
find_line = find_start.format(pack) + log_status.format(pack)
pack_found = re.search(find_line, line) is None
pack_found = re.search(find_line, line) is not None
if pack_found:
packages_lookup[pack] = True