diff options
author | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-05-31 23:30:01 +0000 |
---|---|---|
committer | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-05-31 23:30:01 +0000 |
commit | e974309f2322ed19a0239e6247d806c156e00986 (patch) | |
tree | 84f4c943216b5a9a70bda5efc88651a21d485531 /include/gtest/gtest.h | |
parent | 13eda01416bd48424a92dd02aa85857b7340353f (diff) | |
download | googletest-e974309f2322ed19a0239e6247d806c156e00986.tar.gz |
Fixes a wrong comment for OnTestPartResult().
git-svn-id: http://googletest.googlecode.com/svn/trunk@439 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'include/gtest/gtest.h')
-rw-r--r-- | include/gtest/gtest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gtest/gtest.h b/include/gtest/gtest.h index 937f476..867f2a7 100644 --- a/include/gtest/gtest.h +++ b/include/gtest/gtest.h @@ -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. |