Skip to content

Commit ce90b3c

Browse files
authored
Fix typo
1 parent 52e579c commit ce90b3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/test_parquet.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import pathlib
66
from warnings import (
77
catch_warnings,
8-
filterwarnings,
8+
filterwarnings,get
99
)
1010

1111
import numpy as np
@@ -941,7 +941,7 @@ def test_list_column_results_in_compliant_parquet(self, pa):
941941
result = pyarrow.parquet.read_table(path)
942942

943943
assert (
944-
str(result.schema.get_field_by_name("a").type)
944+
str(result.schema.field_by_name("a").type)
945945
== "list<element: list<element: int64>>"
946946
)
947947

0 commit comments

Comments
 (0)