Skip to content

Commit

Permalink
style: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
evenyag committed Feb 22, 2024
1 parent 6f9b941 commit d7f6a5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mito2/src/memtable/merge_tree/shard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ mod tests {
encode_keys(&metadata, kvs, &mut keys);
}
for key in &keys {
dict_builder.insert_key(&key, &mut metrics);
dict_builder.insert_key(key, &mut metrics);
}

let dict = dict_builder.finish().unwrap();
Expand Down
2 changes: 1 addition & 1 deletion src/mito2/src/memtable/merge_tree/shard_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ mod tests {
encode_keys(&metadata, kvs, &mut keys);
}
for key in &keys {
dict_builder.insert_key(&key, &mut metrics);
dict_builder.insert_key(key, &mut metrics);
}

let dict = dict_builder.finish().unwrap();
Expand Down

0 comments on commit d7f6a5f

Please sign in to comment.