Skip to content

Commit

Permalink
Convert Path to str before search
Browse files Browse the repository at this point in the history
  • Loading branch information
dudoslav committed May 27, 2024
1 parent 09ac7d6 commit 2c1699e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/tests/test_schema_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_schema_evolution(tmp_path):
with pytest.raises(tiledb.TileDBError) as excinfo:
se.add_attribute(newattr)
assert "Input attribute name is already there" in str(excinfo.value)
assert Path("tiledb") / "schema_evolution.cc" in str(excinfo.value)
assert str(Path("tiledb") / "schema_evolution.cc") in str(excinfo.value)

se.array_evolve(uri)

Expand Down

0 comments on commit 2c1699e

Please sign in to comment.