more comments changes

This commit is contained in:
Gennadiy Civil
2018-08-14 15:45:00 -04:00
parent 265efde9a5
commit bbf738a2c1
4 changed files with 4 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ TEST(OutputFileHelpersTest, GetCurrentExecutableName) {
const bool success = exe_str == "app";
#else
// FIXME: remove the hard-coded "lt-" prefix when
// Chandler Carruth's libtool replacement is ready.
// libtool replacement is ready.
const bool success =
exe_str == "googletest-options-test" ||
exe_str == "gtest_all_test" ||

View File

@@ -118,7 +118,7 @@ class MyParamTest : public testing::TestWithParam<int> {};
TEST_P(MyParamTest, ShouldPass) {
// FIXME: Make parameter value checking robust
// WRT order of tests.
// WRT order of tests.
GTEST_CHECK_INT_EQ_(g_param_test_count % kNumberOfParamTests, GetParam());
g_param_test_count++;
}