Skip to content

Commit

Permalink
fix(snap): Finish swapping colors
Browse files Browse the repository at this point in the history
This was left out of 9dddde7
  • Loading branch information
epage committed Dec 8, 2023
1 parent f3a6f0c commit 648d390
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/snapbox/src/report/color.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ impl Palette {
warn: anstyle::AnsiColor::Yellow.on_default(),
error: anstyle::AnsiColor::Red.on_default(),
hint: anstyle::Effects::DIMMED.into(),
expected: anstyle::AnsiColor::Green.on_default() | anstyle::Effects::UNDERLINE,
actual: anstyle::AnsiColor::Red.on_default() | anstyle::Effects::UNDERLINE,
expected: anstyle::AnsiColor::Red.on_default() | anstyle::Effects::UNDERLINE,
actual: anstyle::AnsiColor::Green.on_default() | anstyle::Effects::UNDERLINE,
}
} else {
Self::plain()
Expand Down

0 comments on commit 648d390

Please sign in to comment.