Skip to content

Commit

Permalink
Remove testing mask
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Shannon <[email protected]>
  • Loading branch information
callumforrester and joeshannon committed Jul 10, 2024
1 parent 20afaa8 commit 843eda8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_scratch.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def write_repo_files():
assert file_path.is_file()
st = os.stat(file_path)
# For some reason the mode has two extra bytes at the front
assert (st.st_mode & 0x00FF) & stat.S_IWGRP
assert st.st_mode & stat.S_IWGRP


def test_repo_discovery_errors_if_file_found_with_repo_name(file_path: Path):
Expand Down

0 comments on commit 843eda8

Please sign in to comment.