Skip to content

Commit dd1c5d4

Browse files
committed
Fix
1 parent d9d4fda commit dd1c5d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/io/test_pyarrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ def test_identity_transform_column_projection(tmp_path: str, catalog: InMemoryCa
11811181
with transaction.update_snapshot().overwrite() as update:
11821182
update.append_data_file(unpartitioned_file)
11831183

1184-
schema = pa.schema([("other_field", pa.large_string()), ("partition_id", pa.int64())])
1184+
schema = pa.schema([("other_field", pa.string()), ("partition_id", pa.int64())])
11851185
assert table.scan().to_arrow() == pa.table(
11861186
{
11871187
"other_field": ["foo", "bar", "baz"],

0 commit comments

Comments
 (0)