Skip to content

Commit 793a28c

Browse files
committed
fix tests
1 parent 9acef4d commit 793a28c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

anndata-test-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub fn test_save<B: Backend>() {
3737
)
3838
});
3939
proptest!(ProptestConfig::with_cases(100), |((adata, slice_obs, slice_var) in anndatas)| {
40-
adata.write::<B, _>(&output, None).unwrap();
40+
adata.write::<B, _>(&output, None, None).unwrap();
4141
let adata_in = AnnData::<B>::open(B::open(&output).unwrap()).unwrap();
4242
prop_assert!(anndata_eq(&adata, &adata_in).unwrap());
4343
adata_in.close().unwrap();

anndata-test-utils/tests/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn test_complex_dataframe() {
1414
with_tmp_dir(|dir| {
1515
let file = dir.join("test.h5");
1616
let adata = AnnData::<H5>::open(H5::open(&input).unwrap()).unwrap();
17-
adata.write::<H5, _>(file, None).unwrap();
17+
adata.write::<H5, _>(file, None, None).unwrap();
1818
})
1919
}
2020

0 commit comments

Comments
 (0)