Skip to content

Commit 2f7ffe8

Browse files
committed
Fix prefix sum test
1 parent 20a10e9 commit 2f7ffe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/GraphBLAS-sharp.Tests/Backend/Common/Scan/PrefixSum.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ let makeTest plus zero isEqual scanInclude scanExclude (array: 'a []) =
6363
|> Array.mapFold
6464
(fun s t ->
6565
let a = plus s t
66-
s, a)
66+
a, a)
6767
zero
6868

6969
"Total sums for include should be equal"

0 commit comments

Comments
 (0)