Skip to content

Commit

Permalink
feed clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker committed Jun 22, 2024
1 parent 470d99f commit 8734762
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions oximeter/db/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4381,8 +4381,8 @@ mod tests {
// the direct path.
let extra_keys: Vec<_> = tables_through_upgrades
.keys()
.filter(|k| !tables.contains_key(k.as_str()))
.cloned()
.filter(|k| !tables.contains_key(k))
.collect();
assert!(
extra_keys.is_empty(),
Expand All @@ -4400,7 +4400,7 @@ mod tests {
client: &Client,
) -> BTreeMap<String, serde_json::Map<String, serde_json::Value>> {
let out = client
.execute_with_body(format!(
.execute_with_body(
"SELECT \
name,
engine_full,
Expand All @@ -4409,8 +4409,8 @@ mod tests {
primary_key
FROM system.tables \
WHERE database = 'oximeter'\
FORMAT JSONEachRow;"
))
FORMAT JSONEachRow;",
)
.await
.unwrap()
.1;
Expand Down

0 comments on commit 8734762

Please sign in to comment.