Skip to content

Commit 0affd45

Browse files
Merge pull request #3779 from messerb5467:promote-inclusive-behavior
PiperOrigin-RevId: 436579789 Change-Id: I19faae341027efba83f1c2b3839636fc95780fc7
2 parents 5d6f38c + 9e71237 commit 0affd45

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

googlemock/test/gmock-matchers_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7606,7 +7606,7 @@ TEST(ElementsAreArrayTest, CanBeCreatedWithIteratorRange) {
76067606
}
76077607

76087608
// Since ElementsAre() and ElementsAreArray() share much of the
7609-
// implementation, we only do a sanity test for native arrays here.
7609+
// implementation, we only do a test for native arrays here.
76107610
TEST(ElementsAreArrayTest, WorksWithNativeArray) {
76117611
::std::string a[] = {"hi", "ho"};
76127612
::std::string b[] = {"hi", "ho"};

googletest/test/googletest-output-test_.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ int main(int argc, char** argv) {
10191019
// this program with the golden file.
10201020

10211021
// It's hard to test InitGoogleTest() directly, as it has many
1022-
// global side effects. The following line serves as a sanity test
1022+
// global side effects. The following line serves as a test
10231023
// for it.
10241024
testing::InitGoogleTest(&argc, argv);
10251025
bool internal_skip_environment_and_ad_hoc_tests =

googletest/test/googletest-printers-test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1593,7 +1593,7 @@ TEST(PrintToStringTest, WorksForCharArrayWithEmbeddedNul) {
15931593
}
15941594

15951595
TEST(PrintToStringTest, ContainsNonLatin) {
1596-
// Sanity test with valid UTF-8. Prints both in hex and as text.
1596+
// Test with valid UTF-8. Prints both in hex and as text.
15971597
std::string non_ascii_str = ::std::string("오전 4:30");
15981598
EXPECT_PRINT_TO_STRING_(non_ascii_str,
15991599
"\"\\xEC\\x98\\xA4\\xEC\\xA0\\x84 4:30\"\n"

googletest/test/gtest_unittest.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7059,7 +7059,7 @@ TEST(EventListenerTest, RemovingDefaultXmlGeneratorWorks) {
70597059
delete listener;
70607060
}
70617061

7062-
// Sanity tests to ensure that the alternative, verbose spellings of
7062+
// Tests to ensure that the alternative, verbose spellings of
70637063
// some of the macros work. We don't test them thoroughly as that
70647064
// would be quite involved. Since their implementations are
70657065
// straightforward, and they are rarely used, we'll just rely on the

0 commit comments

Comments
 (0)