mirror of https://github.com/zkat/miette.git
fix(fmt): remove nightly-only fmt flags
This commit is contained in:
parent
8b46679c36
commit
1fa7f5241f
|
|
@ -1,3 +1 @@
|
|||
edition = "2021"
|
||||
wrap_comments = true
|
||||
format_code_in_doc_comments = true
|
||||
|
|
|
|||
|
|
@ -191,8 +191,6 @@ pub enum Severity {
|
|||
Error,
|
||||
}
|
||||
|
||||
|
||||
|
||||
#[cfg(feature = "serde")]
|
||||
#[test]
|
||||
fn test_serialize_severity() {
|
||||
|
|
|
|||
|
|
@ -1855,7 +1855,7 @@ fn syntax_highlighter_on_real_file() {
|
|||
);
|
||||
assert!(out.contains("\u{1b}[38;2;180;142;173m"));
|
||||
assert_eq!(expected, strip_ansi_escapes::strip_str(out));
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn triple_adjacent_highlight() -> Result<(), MietteError> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue