Commit 38e14659 authored by vladlosev's avatar vladlosev
Browse files

Fixes a wrong comment for OnTestPartResult().

parent 0e413243
......@@ -877,7 +877,7 @@ class TestEventListener {
// Fired before the test starts.
virtual void OnTestStart(const TestInfo& test_info) = 0;
// Fired after a failed assertion or a SUCCESS().
// Fired after a failed assertion or a SUCCEED() invocation.
virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;
// Fired after the test ends.
......
......@@ -69,7 +69,7 @@ class TersePrinter : public EmptyTestEventListener {
fflush(stdout);
}
// Called after a failed assertion or a SUCCESS().
// Called after a failed assertion or a SUCCEED() invocation.
virtual void OnTestPartResult(const TestPartResult& test_part_result) {
fprintf(stdout,
"%s in %s:%d\n%s\n",
......
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