Commit daeeda83 authored by Branislav Katreniak's avatar Branislav Katreniak

kj/test: fix missing return TestRunner::run

Warned by gcc 5.3.1
parent 539f9d83
......@@ -346,6 +346,8 @@ public:
if (passCount > 0) write(GREEN, kj::str(passCount, " test(s) passed"), "");
if (failCount > 0) write(RED, kj::str(failCount, " test(s) failed"), "");
context.exit();
return true;
}
private:
......
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