Skip to content

Commit

Permalink
Merge pull request #4322 from pgawro:ansi_colors
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 558224853
Change-Id: Ib2d8ad41fcc4d38f58aa5702b537467d8867d82e
  • Loading branch information
copybara-github committed Aug 18, 2023
2 parents f42da0e + e24cced commit 9fce548
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion googletest/src/gtest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3228,7 +3228,8 @@ static const char* GetAnsiColorCode(GTestColor color) {
case GTestColor::kYellow:
return "3";
default:
return nullptr;
assert(false);
return "9";
}
}

Expand Down

0 comments on commit 9fce548

Please sign in to comment.