Skip to content

Commit 36b43f2

Browse files
authored
chore: tests/system/load/test_large_tables.py (#780)
1 parent 49c1a92 commit 36b43f2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/system/load/test_large_tables.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ def test_to_pandas_large_table():
9494
# df will be downloaded locally
9595
expected_row_count, expected_column_count = df.shape
9696

97-
# TODO(b/340893653): fix type error
98-
df = df.to_pandas() # type: ignore
99-
row_count, column_count = df.shape
97+
df_converted = df.to_pandas()
98+
row_count, column_count = df_converted.shape
10099
assert column_count == expected_column_count
101100
assert row_count == expected_row_count

0 commit comments

Comments
 (0)