Skip to content

Commit 284628a

Browse files
committed
Corrected formatting
1 parent 68992ea commit 284628a

2 files changed

Lines changed: 17 additions & 9 deletions

File tree

tests/GraphBLAS-sharp.Tests/BackendCommonTests/BitonicSortTests.fs

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ let makeTest (q: MailboxProcessor<_>) sort (filter: 'a -> bool) (array: ('n * 'n
4141

4242
q.Post(Msg.CreateToHostMsg(clRows, rows))
4343
q.Post(Msg.CreateToHostMsg(clCols, cols))
44+
4445
q.PostAndReply(fun ch -> Msg.CreateToHostMsg(clVals, vals, ch))
4546
|> ignore
4647

@@ -62,10 +63,18 @@ let makeTest (q: MailboxProcessor<_>) sort (filter: 'a -> bool) (array: ('n * 'n
6263
(sprintf "Row arrays should be equal. Actual is \n%A, expected \n%A, input is \n%A" actualRows expectedRows rows)
6364
|> Expect.sequenceEqual actualRows expectedRows
6465

65-
(sprintf "Column arrays should be equal. Actual is \n%A, expected \n%A, input is \n%A" actualCols expectedCols cols)
66+
(sprintf
67+
"Column arrays should be equal. Actual is \n%A, expected \n%A, input is \n%A"
68+
actualCols
69+
expectedCols
70+
cols)
6671
|> Expect.sequenceEqual actualCols expectedCols
6772

68-
(sprintf "Value arrays should be equal. Actual is \n%A, expected \n%A, input is \n%A" actualVals expectedVals vals)
73+
(sprintf
74+
"Value arrays should be equal. Actual is \n%A, expected \n%A, input is \n%A"
75+
actualVals
76+
expectedVals
77+
vals)
6978
|> Expect.sequenceEqual actualVals expectedVals
7079

7180
let testFixtures<'a when 'a: equality> config wgSize q filter =

tests/GraphBLAS-sharp.Tests/Program.fs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,17 @@ open GraphBLAS.FSharp.IO
1111
let allTests =
1212
testList
1313
"All tests"
14-
[ //Backend.PrefixSum.tests
15-
Backend.BitonicSort.tests
14+
[ Backend.BitonicSort.tests//Backend.PrefixSum.tests
1615
// Backend.Convert.tests
1716
// Backend.RemoveDuplicates.tests
1817
// Backend.Copy.tests
1918
// Backend.Replicate.tests
20-
//Backend.EwiseAdd.tests
19+
//Backend.EwiseAdd.tests
2120
// Backend.Transpose.tests
22-
//Matrix.GetTuples.tests
23-
//Matrix.Mxv.tests
24-
//Algo.Bfs.tests
25-
]
21+
//Matrix.GetTuples.tests
22+
//Matrix.Mxv.tests
23+
//Algo.Bfs.tests
24+
]
2625
|> testSequenced
2726

2827
[<EntryPoint>]

0 commit comments

Comments
 (0)