Skip to content

Commit 9bb04b6

Browse files
fix(ci): satisfy Rust 1.97 clippy
1 parent f7ebc79 commit 9bb04b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/server/tests/integration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ async fn test_agent_register_connect_report() {
350350
let ws_url = format!(
351351
"{}/api/agent/ws?token={}",
352352
base_url.replace("http://", "ws://"),
353-
&token
353+
token
354354
);
355355
let (ws_stream, _) = tokio_tungstenite::connect_async(&ws_url)
356356
.await
@@ -2266,7 +2266,7 @@ async fn test_cleanup_orphans_skips_online_uninitialized_server() {
22662266
let ws_url = format!(
22672267
"{}/api/agent/ws?token={}",
22682268
base_url.replace("http://", "ws://"),
2269-
&online_token
2269+
online_token
22702270
);
22712271
let (ws_stream, _) = tokio_tungstenite::connect_async(&ws_url)
22722272
.await

0 commit comments

Comments
 (0)