Skip to content

Commit 0f8815d

Browse files
committed
fix: remove unused error import from test command
- Remove unused 'error' import from tracing in test.rs - Fixes nightly Rust toolchain linting failure - Keeps only used imports: 'info' and 'instrument'
1 parent 494a85d commit 0f8815d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/application/commands/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! diagnose deployment issues.
1414
1515
use std::net::IpAddr;
16-
use tracing::{error, info, instrument};
16+
use tracing::{info, instrument};
1717

1818
use crate::application::steps::{
1919
// ValidateCloudInitCompletionStep, // Disabled for container testing - see execute() method

0 commit comments

Comments
 (0)