Skip to content

Commit d5c54fc

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)