Skip to content

Commit

Permalink
chore: fix clippy (#1516)
Browse files Browse the repository at this point in the history
fix clippy
  • Loading branch information
kevaundray authored Jun 5, 2023
1 parent 703c51d commit 287f871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions crates/noirc_evaluator/src/ssa_refactor/ir/cfg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,7 @@ impl ControlFlowGraph {

#[cfg(test)]
mod tests {
use crate::ssa_refactor::ir::{
function::RuntimeType, instruction::TerminatorInstruction, map::Id, types::Type,
};
use crate::ssa_refactor::ir::{instruction::TerminatorInstruction, map::Id, types::Type};

use super::{super::function::Function, ControlFlowGraph};

Expand Down
5 changes: 1 addition & 4 deletions crates/noirc_evaluator/src/ssa_refactor/ir/post_order.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,7 @@ impl PostOrder {
#[cfg(test)]
mod tests {
use crate::ssa_refactor::ir::{
function::{Function, RuntimeType},
instruction::TerminatorInstruction,
map::Id,
post_order::PostOrder,
function::Function, instruction::TerminatorInstruction, map::Id, post_order::PostOrder,
types::Type,
};

Expand Down

0 comments on commit 287f871

Please sign in to comment.