mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
fmt: remove redundant parenthesis in the complex infix expr (#17873)
This commit is contained in:
parent
8452644ec3
commit
467a1b4435
44 changed files with 141 additions and 117 deletions
|
@ -831,7 +831,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 == ''
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue