mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fmt: remove redundant parenthesis in the complex infix expr (#17873)
This commit is contained in:
@ -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 == ''
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user