Skip to content

Commit

Permalink
trivial: fix typo in test script output
Browse files Browse the repository at this point in the history
  • Loading branch information
Geod24 committed Jan 2, 2025
1 parent 7639645 commit 9b1a895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run-unittest.d
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int main(string[] args)
writeln(line);
auto errCnt = logLines.count!(a => a.startsWith("[ERROR]"));
auto passCnt = logLines.count!(a => a.startsWith("[INFO]") && a.endsWith("status: Ok"));
writeln(passCnt , "/", errCnt + passCnt, " tests were successed.");
writeln(passCnt , "/", errCnt + passCnt, " tests succeeded.");

return any_errors;
}

0 comments on commit 9b1a895

Please sign in to comment.