diff --git a/alcotest/test/alcotest_report.expected b/alcotest/test/alcotest_report.expected index 072574f..e9c88a3 100644 --- a/alcotest/test/alcotest_report.expected +++ b/alcotest/test/alcotest_report.expected @@ -1,15 +1,15 @@ -Invalid_argument("7")Alcotest assertion failure +Invalid_argument("7")Alcotest assertion failure File "alcotest/junit_alcotest.ml", line 22, character 6: FAIL string_of_int equals to '7' Expected: `"7"' Received: `"8"' -Invalid_argument("7")Alcotest assertion failure +Invalid_argument("7")Alcotest assertion failure File "alcotest/junit_alcotest.ml", line 22, character 6: FAIL string_of_int equals to '7' Expected: `"7"' Received: `"8"' - + diff --git a/alcotest/test/alcotest_report.ml b/alcotest/test/alcotest_report.ml index d8fab98..6bd449a 100644 --- a/alcotest/test/alcotest_report.ml +++ b/alcotest/test/alcotest_report.ml @@ -19,6 +19,7 @@ let test_set = ; A.test_case "Capitalize" `Quick capit ; A.test_case "Add entries" `Slow plus ; A.test_case "Test with wrong result" `Quick wrong_result + ; A.test_case "Test skipped" `Quick (fun () -> A.skip ()) ] ;;