Skip to content

Commit 8aa8420

Browse files
committed
Fixing du
stat command didn't give proper size. Replacing values with those seen from failed github actions (4981734, 4969597) caused `python3 -m pytest` on mac to pass despite direct calls to `bio2zarr.core.du` returning 4960358, 4955837.
1 parent 7f72dfb commit 8aa8420

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ def test_examples(self, chunk_size, size, start, stop):
237237
# It works in CI on Linux, but it'll probably break at some point.
238238
# It's also necessary to update these numbers each time a new data
239239
# file gets added
240-
("tests/data", 4957158),
241-
("tests/data/vcf", 4953213),
240+
("tests/data", 4981734),
241+
("tests/data/vcf", 4969597),
242242
("tests/data/vcf/sample.vcf.gz", 1089),
243243
],
244244
)

0 commit comments

Comments
 (0)