Skip to content

Commit

Permalink
Fix delete dataset test
Browse files Browse the repository at this point in the history
  • Loading branch information
gspowley committed Sep 11, 2024
1 parent bb9806d commit 8ae2df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apis/python/tests/test_tiledbvcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2112,10 +2112,10 @@ def test_delete_dataset(tmp_path):
ds.create_dataset()

# Check that the dataset exists
assert tiledb.object_type(uri)
assert os.path.exists(uri)

# Delete the dataset
tiledbvcf.Dataset.delete(uri)

# Check that the dataset does not exist
assert not tiledb.object_type(uri)
assert not os.path.exists(uri)

0 comments on commit 8ae2df4

Please sign in to comment.