Skip to content

Commit

Permalink
Fix test error message expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Oct 15, 2024
1 parent 8e4c253 commit 80086f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/python/tests/test_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def test_take_deleted_blob(tmp_path, dataset_with_blobs):
dataset_with_blobs.delete("idx = 1")

with pytest.raises(
ValueError, match="some of the row ids requested have been deleted"
NotImplementedError,
match="A take operation that includes row addresses must not target deleted",
):
dataset_with_blobs.take_blobs(row_ids, "blobs")

0 comments on commit 80086f0

Please sign in to comment.