Add color_reset to StyleCodes

This commit is contained in:
Richard Feldman 2022-04-20 18:13:18 -04:00
parent 928f99957a
commit e2ea66043a
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798
2 changed files with 4 additions and 0 deletions

View file

@ -61,6 +61,7 @@ mod cli_run {
.replace(ANSI_STYLE_CODES.bold, "")
.replace(ANSI_STYLE_CODES.underline, "")
.replace(ANSI_STYLE_CODES.reset, "")
.replace(ANSI_STYLE_CODES.color_reset, "")
}
fn check_compile_error(file: &Path, flags: &[&str], expected: &str) {