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 bb9806d commit 4a8be5eCopy full SHA for 4a8be5e
1 file changed
apis/python/tests/test_tiledbvcf.py
@@ -2112,10 +2112,10 @@ def test_delete_dataset(tmp_path):
2112
ds.create_dataset()
2113
2114
# Check that the dataset exists
2115
- assert tiledb.object_type(uri)
+ assert os.path.exists(uri)
2116
2117
# Delete the dataset
2118
tiledbvcf.Dataset.delete(uri)
2119
2120
# Check that the dataset does not exist
2121
- assert not tiledb.object_type(uri)
+ assert not os.path.exists(uri)
0 commit comments