Skip to content

Commit 12fc7ab

Browse files
committed
Fix variable name in memory tracking for clarity in test_arrow_c_stream_streaming
1 parent 1734218 commit 12fc7ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/tests/test_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ def test_arrow_c_stream_streaming(large_df):
15861586

15871587
tracemalloc.start()
15881588
batch_count = sum(1 for _ in reader)
1589-
current, peak = tracemalloc.get_traced_memory()
1589+
_current, peak = tracemalloc.get_traced_memory()
15901590
tracemalloc.stop()
15911591

15921592
assert batch_count > 1

0 commit comments

Comments
 (0)