1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-29 03:04:27 +01:00

Merge pull request #56 from holderbaum/master

Print an EOL before printing the TestResult while executing the spec (Thanks Jakob!)
This commit is contained in:
Mark VanderVoord
2014-02-24 16:29:19 -05:00

View File

@@ -249,6 +249,7 @@ void UnityPrintOk(void)
//----------------------------------------------- //-----------------------------------------------
void UnityTestResultsBegin(const char* file, const UNITY_LINE_TYPE line) void UnityTestResultsBegin(const char* file, const UNITY_LINE_TYPE line)
{ {
UNITY_PRINT_EOL;
UnityPrint(file); UnityPrint(file);
UNITY_OUTPUT_CHAR(':'); UNITY_OUTPUT_CHAR(':');
UnityPrintNumber(line); UnityPrintNumber(line);