From 1976a6693c1f59944685030f9d1efc1f1edc267c Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Mon, 26 Feb 2024 12:16:26 +0000 Subject: [PATCH] clippy --- test-utils/src/dev/clickhouse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-utils/src/dev/clickhouse.rs b/test-utils/src/dev/clickhouse.rs index 8f9391efc8..4ff4623765 100644 --- a/test-utils/src/dev/clickhouse.rs +++ b/test-utils/src/dev/clickhouse.rs @@ -972,7 +972,7 @@ mod tests { // (https://github.com/oxidecomputer/omicron/issues/3580). write_and_wait( &mut file, - format!("{}", &CLICKHOUSE_PORT[..30]), + (&CLICKHOUSE_PORT[..30]).to_string(), writer_interval, ) .await;