Skip to content

Commit

Permalink
avoid codespell error for truncate transform
Browse files Browse the repository at this point in the history
  • Loading branch information
sungwy committed Jan 16, 2025
1 parent c1ece75 commit 3d0f03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ def test_bucket_pyarrow_transforms(
@pytest.mark.parametrize(
"source_type, input_arr, expected, width",
[
(StringType(), pa.array(["hello", "iceberg"]), pa.array(["hel", "ice"]), 3),
(StringType(), pa.array(["developer", "iceberg"]), pa.array(["dev", "ice"]), 3),
(IntegerType(), pa.array([1, -1]), pa.array([0, -10]), 10),
],
)
Expand Down

0 comments on commit 3d0f03b

Please sign in to comment.