Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNelson committed Dec 20, 2024
1 parent 4051839 commit 6dca989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/programs/test_python_euid
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import os
ruid, euid, suid = os.getresuid()
assert euid == 0, f"Expected euid to be 0, got {euid}"
assert ruid == 1000, f"Expected ruid to be 1000, got {ruid}"
assert suid == 0, f"Expected suid to be 1000, got {suid}"
assert suid == 0, f"Expected suid to be 0, got {suid}"

rgid, egid, sgid = os.getresgid()
assert egid == 1000, f"Expected egid to be 1000, got {egid}"
Expand Down

0 comments on commit 6dca989

Please sign in to comment.