Skip to content

Commit b9527ed

Browse files
committed
Made the summary text accurately describe the results.
1 parent 6ef9896 commit b9527ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/TestClass.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -993,11 +993,11 @@ class TestClass
993993
if (HasSharedFailure())
994994
privateLogCount("Total failed checks", GetSharedData().GetTotalFailedChecks());
995995
if (GetSharedData().GetTotalNotTested() > 0)
996-
privateLogCount("Total functions not tested", GetSharedData().GetTotalNotTested());
997-
privateLogCount("Total functions tested", GetSharedData().GetTotalFunctionsTested());
996+
privateLogCount("Total not tested", GetSharedData().GetTotalNotTested());
997+
privateLogCount("Total tested", GetSharedData().GetTotalFunctionsTested());
998998
if (GetSharedData().GetTotalTimedFunctions() > 0)
999-
privateLogCount("Total functions timed", GetSharedData().GetTotalTimedFunctions());
1000-
privateLogCount("Total function tests", GetSharedData().GetTotalTests());
999+
privateLogCount("Total timed", GetSharedData().GetTotalTimedFunctions());
1000+
privateLogCount("Total tests", GetSharedData().GetTotalTests());
10011001
if (GetSharedData().GetTotalLeakedTests() > 0)
10021002
privateLogCount("Total memory leaks", GetSharedData().GetTotalLeakedTests());
10031003
}

0 commit comments

Comments
 (0)