mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-25 02:33:15 -04:00
fixed_test: remove commented-out skipif decorator
The @pytest.mark.skipif(not fs_supports_sparse(), ...) decorator on test_chunkify_sparse was commented out and is not needed because the zeros.startswith(result) fix in FileReader.read() detects zero-filled slices as CH_ALLOC regardless of sparse FS support, and ChunkerFixed with sparse=True gracefully falls back when SEEK_HOLE/SEEK_DATA is not available.
This commit is contained in:
parent
7b889d357d
commit
62d8762eb7
1 changed files with 0 additions and 1 deletions
|
|
@ -40,7 +40,6 @@ def pretty_print(msg, items):
|
|||
print(f"???({item})")
|
||||
|
||||
|
||||
# @pytest.mark.skipif(not fs_supports_sparse(), reason="filesystem does not support sparse files")
|
||||
@pytest.mark.parametrize(
|
||||
"fname, sparse_map, header_size, sparse",
|
||||
[
|
||||
|
|
|
|||
Loading…
Reference in a new issue