Skip to content

Commit 04431c0

Browse files
committed
Ignore typo for specific test situation
1 parent f08d5b0 commit 04431c0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

python/tests/test_functions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,10 @@ def test_array_function_obj_tests(stmt, py_expr):
697697
f.initcap(column("c")),
698698
pa.array(["Hello ", " World ", " !"], type=pa.string_view()),
699699
),
700-
(f.left(column("a"), literal(3)), pa.array(["Hel", "Wor", "!"])),
700+
(
701+
f.left(column("a"), literal(3)),
702+
pa.array(["Hel", "Wor", "!"]), # codespell:ignore
703+
),
701704
(f.length(column("c")), pa.array([6, 7, 2], type=pa.int32())),
702705
(f.lower(column("a")), pa.array(["hello", "world", "!"])),
703706
(f.lpad(column("a"), literal(7)), pa.array([" Hello", " World", " !"])),

0 commit comments

Comments
 (0)