We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b1077d commit f5c3293Copy full SHA for f5c3293
anndata/tests/test_readwrite.py
@@ -142,6 +142,6 @@ def test_write_csv(typ):
142
])
143
def test_readwrite_hdf5_empty(read, write):
144
adata = ad.AnnData(uns=dict(empty=np.array([], dtype=float)))
145
- write(adata, HERE / 'empty.h5')
146
- ad_read = read(HERE / 'empty.h5')
+ write(adata, HERE / 'test.empty.h5')
+ ad_read = read(HERE / 'test.empty.h5')
147
assert ad_read.uns['empty'].shape == (0,)
0 commit comments