fmt: remove redundant parenthesis in the complex infix expr (#17873)

This commit is contained in:
yuyi 2023-04-04 18:47:48 +08:00 committed by GitHub
parent 8452644ec3
commit 467a1b4435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 141 additions and 117 deletions

View file

@ -1054,7 +1054,7 @@ fn test_split_into_lines() {
assert lines_mixed_trailers.len == 9
for line in lines_mixed_trailers {
assert (line == line_content) || (line == '')
assert line == line_content || line == ''
}
}