We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba196ca commit 575aa5cCopy full SHA for 575aa5c
1 file changed
tests/sandbox/test_entries.py
@@ -679,7 +679,7 @@ async def test_dir_metadata_strips_file_type_bits_before_chmod() -> None:
679
680
await Dir()._apply_metadata(session, dest)
681
682
- assert ("chmod", "0755", str(dest)) in session.exec_calls
+ assert ("chmod", "0755", "/workspace/dir") in session.exec_calls
683
684
685
@pytest.mark.asyncio
@@ -710,5 +710,5 @@ async def test_apply_manifest_raises_on_chgrp_failure() -> None:
710
with pytest.raises(ExecNonZeroError):
711
await session.apply_manifest()
712
713
- assert ("chgrp", "sandbox-user", str(Path("/workspace/copied.txt"))) in session.exec_calls
+ assert ("chgrp", "sandbox-user", "/workspace/copied.txt") in session.exec_calls
714
assert not any(call[0] == "chmod" for call in session.exec_calls)
0 commit comments