Skip to content

Commit 882e7ed

Browse files
committed
fix
Signed-off-by: Robert Kruszewski <[email protected]>
1 parent dcbbac3 commit 882e7ed

File tree

1 file changed

+3
-3
lines changed
  • vortex-array/src/compute

1 file changed

+3
-3
lines changed

vortex-array/src/compute/sum.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,10 @@ mod test {
306306
)
307307
.unwrap();
308308

309-
let sum_with_acc = sum(array.as_ref()).unwrap();
309+
let sum_without_acc = sum(array.as_ref()).unwrap();
310310
assert_eq!(
311-
sum_with_acc,
312-
Scalar::primitive(11i64, Nullability::Nullable)
311+
sum_without_acc,
312+
Scalar::primitive(9i64, Nullability::Nullable)
313313
);
314314
}
315315
}

0 commit comments

Comments
 (0)