Skip to content

Commit 1424d0e

Browse files
Zheaolivstinner
andauthored
Update Lib/test/audit-tests.py
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 70dd353 commit 1424d0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/audit-tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,8 +661,8 @@ def hook(event, args):
661661
tmp_file.write("print('Hello from remote_exec!')\n")
662662
tmp_file.flush()
663663
sys.remote_exec(pid, tmp_file.name)
664-
assertEqual(pid, event_pid)
665-
assertEqual(tmp_file.name, event_script_path)
664+
assertEqual(event_pid, pid)
665+
assertEqual(event_script_path, tmp_file.name)
666666

667667
if __name__ == "__main__":
668668
from test.support import suppress_msvcrt_asserts

0 commit comments

Comments
 (0)