From 27c69d89829d777e786bacdcde11210d6f500900 Mon Sep 17 00:00:00 2001 From: Siavash Sameni Date: Thu, 2 Apr 2026 08:40:40 +0400 Subject: [PATCH] Fix unused variable warning in test Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/full_integration_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/full_integration_test.rs b/tests/full_integration_test.rs index 30cdef9..e30fc82 100644 --- a/tests/full_integration_test.rs +++ b/tests/full_integration_test.rs @@ -235,7 +235,7 @@ async fn test_csv_created_client() { // Initialize CSV btest_rs::csv_output::init(&csv_path).unwrap(); - let (tx, rx, lost, intervals) = run_client_test( + let (tx, rx, lost, _intervals) = run_client_test( "127.0.0.1", port, false, true, false, None, None, ).await;