mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-27 08:41:00 +00:00
fix clippy
This commit is contained in:
committed by
Clément Renault
parent
874499a2d2
commit
e9055f5572
@ -233,13 +233,13 @@ pub(crate) mod test {
|
||||
let mut ident = String::new();
|
||||
|
||||
for _ in 0..depth {
|
||||
ident.push_str(&"│");
|
||||
ident.push('│');
|
||||
ident.push_str(&" ".repeat(4));
|
||||
}
|
||||
if idx == entries.len() - 1 {
|
||||
ident.push_str(&"└");
|
||||
ident.push('└');
|
||||
} else {
|
||||
ident.push_str(&"├");
|
||||
ident.push('├');
|
||||
}
|
||||
ident.push_str(&"-".repeat(4));
|
||||
|
||||
|
Reference in New Issue
Block a user