Skip to content

Commit

Permalink
fix: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Apr 24, 2024
1 parent 22c1bf8 commit 3283378
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests-fuzz/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use common_macro::stack_trace_debug;
use snafu::{Location, Snafu};

use crate::ir::create_expr::{CreateDatabaseExprBuilderError, CreateTableExprBuilderError};
#[cfg(feature = "unstable")]
use crate::utils::process::Pid;

pub type Result<T> = std::result::Result<T, Error>;
Expand Down Expand Up @@ -84,6 +85,7 @@ pub enum Error {
error: std::io::Error,
},

#[cfg(feature = "unstable")]
#[snafu(display("Failed to kill a process, pid: {}", pid))]
KillProcess {
location: Location,
Expand Down

0 comments on commit 3283378

Please sign in to comment.