Redundant parens

a_star_module
Wilfred Hughes 2022-01-02 18:35:13 +07:00
parent 05be21d08e
commit 626046b12d
1 changed files with 4 additions and 4 deletions

@ -200,16 +200,16 @@ mod tests {
assert_eq!(
line_spans,
vec![
(SingleLineSpan {
SingleLineSpan {
line: 1.into(),
start_col: 1,
end_col: 3
}),
(SingleLineSpan {
},
SingleLineSpan {
line: 2.into(),
start_col: 0,
end_col: 2
})
}
]
);
}