Fix clippy::len_zero
lint style violations (#36589)
Related: #36577 Release Notes: - N/A --------- Signed-off-by: Umesh Yadav <git@umesh.dev>
This commit is contained in:
parent
92352f97ad
commit
1e6cefaa56
24 changed files with 46 additions and 46 deletions
|
@ -4377,7 +4377,7 @@ mod tests {
|
|||
}
|
||||
}
|
||||
}
|
||||
if errors.len() > 0 {
|
||||
if !errors.is_empty() {
|
||||
panic!(
|
||||
"Failed to build actions using {{}} as input: {:?}. Errors:\n{}",
|
||||
failing_names,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue