summaryrefslogtreecommitdiffstats
path: root/src/tests/test_hunk_highlighting.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_hunk_highlighting.rs')
-rw-r--r--src/tests/test_hunk_highlighting.rs52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/tests/test_hunk_highlighting.rs b/src/tests/test_hunk_highlighting.rs
index 8c2bbe35..fdc5cfc5 100644
--- a/src/tests/test_hunk_highlighting.rs
+++ b/src/tests/test_hunk_highlighting.rs
@@ -2,6 +2,8 @@
mod tests {
use itertools::Itertools;
+ use ansi_term::Style;
+
use crate::cli;
use crate::config::ColorLayer::*;
use crate::delta::State;
@@ -52,32 +54,30 @@ mod tests {
);
let lines = output.trim().split("\n").skip(4);
- let minus =
- paint::paint_text_background("", config.minus_style_modifier.background.unwrap(), true)
- .trim_end_matches(paint::ANSI_SGR_RESET)
- .trim_end_matches("m")
- .to_string();
- let minus_emph = paint::paint_text_background(
- "",
- config.minus_emph_style_modifier.background.unwrap(),
- true,
- )
- .trim_end_matches(paint::ANSI_SGR_RESET)
- .trim_end_matches("m")
- .to_string();
- let plus =
- paint::paint_text_background("", config.plus_style_modifier.background.unwrap(), true)
- .trim_end_matches(paint::ANSI_SGR_RESET)
- .trim_end_matches("m")
- .to_string();
- let plus_emph = paint::paint_text_background(
- "",
- config.plus_emph_style_modifier.background.unwrap(),
- true,
- )
- .trim_end_matches(paint::ANSI_SGR_RESET)
- .trim_end_matches("m")
- .to_string();
+ let minus = Style::new()
+ .on(config.minus_style.background.unwrap())
+ .paint("")
+ .trim_end_matches(paint::ANSI_SGR_RESET)
+ .trim_end_matches("m")
+ .to_string();
+ let minus_emph = Style::new()
+ .on(config.minus_emph_style.background.unwrap())
+ .paint("")
+ .trim_end_matches(paint::ANSI_SGR_RESET)
+ .trim_end_matches("m")
+ .to_string();
+ let plus = Style::new()
+ .on(config.plus_style.background.unwrap())
+ .paint("")
+ .trim_end_matches(paint::ANSI_SGR_RESET)
+ .trim_end_matches("m")
+ .to_string();
+ let plus_emph = Style::new()
+ .on(config.plus_emph_style.background.unwrap())
+ .paint("")
+ .trim_end_matches(paint::ANSI_SGR_RESET)
+ .trim_end_matches("m")
+ .to_string();
let expectation = vec![
// line 1: unchanged