Skip to content

Commit

Permalink
Fix enumeration test
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Sep 10, 2024
1 parent 00e070c commit c62edf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/tests/test_enumeration.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_array_schema_enumeration(self):

with self.assertRaises(tiledb.TileDBError) as excinfo:
assert A.enum("enmr3") == []
assert " No enumeration named 'enmr3'" in str(excinfo.value)
assert "Array: Unable to get enumeration; Enumeration 'enmr3' does not exist." == str(excinfo.value)
assert attr3.enum_label is None
assert A.attr("attr3").enum_label is None

Expand Down

0 comments on commit c62edf0

Please sign in to comment.