Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit d5c54fc

Browse files
authored
fix: correct min field from max() to min() in remote function tests (#1917)
1 parent ebdcd02 commit d5c54fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system/large/functions/test_remote_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1707,7 +1707,7 @@ def analyze(row):
17071707
{
17081708
"dtype": row.dtype,
17091709
"count": row.count(),
1710-
"min": row.max(),
1710+
"min": row.min(),
17111711
"max": row.max(),
17121712
"mean": row.mean(),
17131713
"std": row.std(),

0 commit comments

Comments
 (0)