Skip to content

Commit 75a9f84

Browse files
author
Terraphim CI
committed
fix(clippy): remove unused imports in benchmarks and tests
- Remove unused Arc import from agent_operations.rs - Remove unused TerraphimAgent import from simple_agent_test.rs - Note: test_end_to_end_offline_workflow failure is pre-existing and unrelated to this PR
1 parent be1337c commit 75a9f84

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

crates/terraphim_multi_agent/benches/agent_operations.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
22
use std::hint::black_box;
3-
use std::sync::Arc;
43
use tokio::runtime::Runtime;
54

65
use terraphim_multi_agent::{test_utils::create_test_agent_simple, CommandInput, CommandType};

crates/terraphim_multi_agent/tests/simple_agent_test.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use terraphim_multi_agent::{
2-
agent::AgentStatus, test_utils::*, CommandInput, CommandType, TerraphimAgent,
3-
};
1+
use terraphim_multi_agent::{agent::AgentStatus, test_utils::*, CommandInput, CommandType};
42

53
#[tokio::test]
64
async fn test_agent_creation_simple() {

0 commit comments

Comments
 (0)