Commit 64fa6b01 authored by Samir Halilcevic's avatar Samir Halilcevic Committed by Dominik Charousset

Fix CI error for Windows

parent 47397a94
......@@ -190,7 +190,7 @@ int runner::run(int argc, char** argv) {
default_reporter->end_suite(suite_name);
}
default_reporter->stop();
return default_reporter->success() > 0 ? EXIT_SUCCESS : EXIT_FAILURE;
return default_reporter->success() ? EXIT_SUCCESS : EXIT_FAILURE;
}
runner::parse_cli_result runner::parse_cli(int argc, char** argv) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment