cargo fmt

ida_star
Wilfred Hughes 2021-09-05 01:04:22 +07:00
parent 69981c96cc
commit e734aa3730
1 changed files with 9 additions and 11 deletions

@ -1185,17 +1185,15 @@ mod tests {
let res = split_comment_words(content, &pos, opposite_content, &opposite_pos, &[]);
assert_eq!(
res,
vec![
MatchedPos {
kind: MatchKind::ChangedCommentPart,
pos: vec![SingleLineSpan {
line: 0.into(),
start_col: 0,
end_col: 3
}],
prev_opposite_pos: vec![]
},
]
vec![MatchedPos {
kind: MatchKind::ChangedCommentPart,
pos: vec![SingleLineSpan {
line: 0.into(),
start_col: 0,
end_col: 3
}],
prev_opposite_pos: vec![]
},]
);
}
}