Skip to content

Commit

Permalink
Fix standard test library not passing verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
rockofox committed Dec 14, 2024
1 parent 6a3cfb1 commit cc210db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions share/std/test.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ let evalTestSuite (suite: TestSuite) => IO = do
let failed = filter (\x -> !(x.result)), suite.results
let passed = filter (\x -> x.result), suite.results

map (\r-> do
void (map (\r-> do
if r.result then do
println ("\x1b[32m✓\x1b[0m " ++ r.name)
else do
println ("\x1b[31m✗\x1b[0m " ++ r.name)
end
end), suite.results
end), suite.results)

println ("Passed: " ++ ((length passed) as String) ++ "/" ++ ((length suite.results) as String))
if (length failed) > 0 then do
Expand Down

0 comments on commit cc210db

Please sign in to comment.