Skip to content

Commit

Permalink
fix: test_write_type_castable_types expected message
Browse files Browse the repository at this point in the history
  • Loading branch information
jkylling authored and ion-elgreco committed Oct 13, 2024
1 parent 0b3595c commit d75e063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def test_write_type_castable_types(existing_table: DeltaTable):
engine="rust",
)
with pytest.raises(
Exception, match="Cast error: Cannot cast string 'hello' to value of Int8 type"
Exception, match="Cast error: Failed to cast int8 from Int8 to Utf8: Cannot cast string 'hello' to value of Int8 type"
):
write_deltalake(
existing_table,
Expand Down

0 comments on commit d75e063

Please sign in to comment.