tracks/ocaml/tools/test-generator/templates/ocaml/leap/test.ml in trackler-2.2.1.108 vs tracks/ocaml/tools/test-generator/templates/ocaml/leap/test.ml in trackler-2.2.1.109
- old
+ new
@@ -1,14 +1,14 @@
open Core
open OUnit2
open Leap
-let ae exp got _test_ctxt = assert_equal exp got ~printer:Int.to_string
+let ae exp got _test_ctxt = assert_equal exp got ~printer:Bool.to_string
let tests = [
(* TEST
"$description" >::
- ae $expected (leap_year $input);
+ ae $expected (leap_year $year);
END TEST *)
]
let () =
run_test_tt_main ("leap tests" >::: tests)