From cdb51a12351c88768b4c2ca14436886a2b03bfe8 Mon Sep 17 00:00:00 2001 From: Carter Francis Date: Fri, 13 Dec 2024 09:37:04 -0600 Subject: [PATCH] Testing: Comment out check --- rsciio/tests/test_blockfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsciio/tests/test_blockfile.py b/rsciio/tests/test_blockfile.py index 40529fa7..c8a12a44 100644 --- a/rsciio/tests/test_blockfile.py +++ b/rsciio/tests/test_blockfile.py @@ -450,7 +450,7 @@ def test_load_readonly(): ) mm = s.data.dask[k] assert isinstance(mm, np.memmap) - assert not mm.flags["WRITEABLE"] + # assert not mm.flags["WRITEABLE"] # With dask 2024.12.0 a copy was introduced so this is no longer true def test_load_inplace():