summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/color/theme.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color/theme.rs b/src/color/theme.rs
index 94b0b60..4d31174 100644
--- a/src/color/theme.rs
+++ b/src/color/theme.rs
@@ -345,7 +345,7 @@ mod tests {
fn test_empty_theme_return_default() {
// Must contain one field at least
// ref https://github.com/dtolnay/serde-yaml/issues/86
- let empty_theme = Theme::with_yaml("user: 230".into()).unwrap();
+ let empty_theme = Theme::with_yaml("user: 230".into()).unwrap(); // 230 is the default value
let default_theme = Theme::default_dark();
assert_eq!(empty_theme, default_theme);
}