aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/src
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-08-14 14:24:01 -0700
committerGitHub <noreply@github.com>2018-08-14 14:24:01 -0700
commit587ceaeaee6c2ccb5e565858d7fe12aaf69795e6 (patch)
tree8ff09c590425eb6c930cad693d39641efcc7a1b0 /googlemock/src
parent3306848f697568aacf4bcca330f6bdd5ce671899 (diff)
parentf0e4c411ca08f01068162483e92810001b178a60 (diff)
downloadgoogletest-587ceaeaee6c2ccb5e565858d7fe12aaf69795e6.tar.gz
googletest-587ceaeaee6c2ccb5e565858d7fe12aaf69795e6.tar.bz2
googletest-587ceaeaee6c2ccb5e565858d7fe12aaf69795e6.zip
Merge pull request #1741 from gennadiycivil/master
Comments changes, no functionality changes.
Diffstat (limited to 'googlemock/src')
-rw-r--r--googlemock/src/gmock-spec-builders.cc4
-rw-r--r--googlemock/src/gmock.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/src/gmock-spec-builders.cc b/googlemock/src/gmock-spec-builders.cc
index 83cc9cc1..b93f4e0e 100644
--- a/googlemock/src/gmock-spec-builders.cc
+++ b/googlemock/src/gmock-spec-builders.cc
@@ -606,7 +606,7 @@ class MockObjectRegistry {
if (it->second.leakable) // The user said it's fine to leak this object.
continue;
- // TODO(wan@google.com): Print the type of the leaked object.
+ // FIXME: Print the type of the leaked object.
// This can help the user identify the leaked object.
std::cout << "\n";
const MockObjectState& state = it->second;
@@ -782,7 +782,7 @@ void Mock::RegisterUseByOnCallOrExpectCall(const void* mock_obj,
const TestInfo* const test_info =
UnitTest::GetInstance()->current_test_info();
if (test_info != NULL) {
- // TODO(wan@google.com): record the test case name when the
+ // FIXME: record the test case name when the
// ON_CALL or EXPECT_CALL is invoked from SetUpTestCase() or
// TearDownTestCase().
state.first_used_test_case = test_info->test_case_name();
diff --git a/googlemock/src/gmock.cc b/googlemock/src/gmock.cc
index 1cebede0..36356c93 100644
--- a/googlemock/src/gmock.cc
+++ b/googlemock/src/gmock.cc
@@ -33,7 +33,7 @@
namespace testing {
-// TODO(wan@google.com): support using environment variables to
+// FIXME: support using environment variables to
// control the flag values, like what Google Test does.
GMOCK_DEFINE_bool_(catch_leaked_mocks, true,