Skip to content

Commit 61f3ed0

Browse files
committed
Fix test
1 parent 3117a9c commit 61f3ed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paimon-python/pypaimon/tests/blob_table_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ def test_blob_write_read_large_data_end_to_end_with_rolling(self):
13341334
read_builder = table.new_read_builder()
13351335
table_scan = read_builder.new_scan()
13361336
table_read = read_builder.new_read()
1337-
splits = table_scan.plan().splits();
1337+
splits = table_scan.plan().splits()
13381338
result = table_read.to_arrow(splits)
13391339

13401340
self.assertEqual(sum([s._row_count for s in splits]), 40)

0 commit comments

Comments
 (0)