Skip to content

Commit

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

# Check that the dataset exists
assert tiledb.object_type(uri)
assert tiledb.object_type(uri) == "group"

print(f"tmp_path before delete: {os.listdir(tmp_path)}")

Expand All @@ -2124,4 +2124,5 @@ def test_delete_dataset(tmp_path):
# Check that the dataset does not exist
obj_type = tiledb.object_type(uri)
print(f"obj_type: {obj_type}")
assert not obj_type
print(f"type(obj_type): {type(obj_type)}")
assert tiledb.object_type(uri) != "group"

0 comments on commit 2fa1169

Please sign in to comment.