Merge branch 'google:main' into http-to-https

This commit is contained in:
Elior Schneider 2023-08-20 09:39:17 +03:00 committed by GitHub
commit c759a58a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3228,7 +3228,8 @@ static const char* GetAnsiColorCode(GTestColor color) {
case GTestColor::kYellow:
return "3";
default:
return nullptr;
assert(false);
return "9";
}
}