test: remove redundant integration harness commentary

This commit is contained in:
Yuneng Jiang 2026-09-14 09:40:20 -07:00
parent 48ccdba129
commit 474fd5ff8d
No known key found for this signature in database

View file

@ -12,8 +12,6 @@ def is_owned(process: psutil.Process, identity: str, owner_uid: int) -> bool:
def owned_processes(identity: str, owner_uid: int) -> tuple[psutil.Process, ...]:
# The runner invokes this helper with sudo. Unreadable ownership remains a hard
# failure: skipping it would make a successful cleanup unverifiable.
return tuple(process for process in psutil.process_iter() if is_owned(process, identity, owner_uid))