summaryrefslogtreecommitdiff
path: root/test/mono/test.ml
diff options
context:
space:
mode:
Diffstat (limited to 'test/mono/test.ml')
-rw-r--r--test/mono/test.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/mono/test.ml b/test/mono/test.ml
index efa1de54..dc194792 100644
--- a/test/mono/test.ml
+++ b/test/mono/test.ml
@@ -1 +1,3 @@
-if Testout.run() then print_endline "OK" else print_endline "Failed";;
+match Testout.run() with
+| Done _ -> print_endline "OK"
+| _ -> print_endline "Failed";;