Remove sanity as it is offensive to neurodiverse individuals.

This commit is contained in:
Brad Messer 2022-03-18 12:19:38 -04:00
parent ae5e06dd35
commit 794da715d4
4 changed files with 4 additions and 4 deletions

View File

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

View File

@ -1081,7 +1081,7 @@ int main(int argc, char **argv) {
// this program with the golden file.
// It's hard to test InitGoogleTest() directly, as it has many
// global side effects. The following line serves as a sanity test
// global side effects. The following line serves as a test
// for it.
testing::InitGoogleTest(&argc, argv);
bool internal_skip_environment_and_ad_hoc_tests =

View File

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

View File

@ -7171,7 +7171,7 @@ TEST(EventListenerTest, RemovingDefaultXmlGeneratorWorks) {
delete listener;
}
// Sanity tests to ensure that the alternative, verbose spellings of
// Tests to ensure that the alternative, verbose spellings of
// some of the macros work. We don't test them thoroughly as that
// would be quite involved. Since their implementations are
// straightforward, and they are rarely used, we'll just rely on the