Skip to content

Commit ada9d18

Browse files
committed
fix: assert correct column number
1 parent e5d577f commit ada9d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/datafusion/tests/test_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def test_string_functions(df):
574574
assert result.column(25) == pa.array(["Helll", "Wldld", "!"])
575575
assert result.column(26) == pa.array(["hello", "world", "!"])
576576
assert result.column(27) == pa.array(["HELLO ", " WORLD ", " !"])
577-
assert result.column(22) == pa.array([True, False, False])
577+
assert result.column(28) == pa.array([True, False, False])
578578

579579

580580
def test_hash_functions(df):

0 commit comments

Comments
 (0)