From 0251200375658b1931f0c9c32f429ed5d56727a8 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 25 Jan 2024 17:22:32 +0100 Subject: [PATCH] Fix unused import warning on default feature. --- riscv/tests/riscv.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/riscv/tests/riscv.rs b/riscv/tests/riscv.rs index 2718777c59..884d869a90 100644 --- a/riscv/tests/riscv.rs +++ b/riscv/tests/riscv.rs @@ -4,11 +4,7 @@ use common::verify_riscv_asm_string; use mktemp::Temp; use powdr_backend::BackendType; use powdr_number::GoldilocksField; -use powdr_pipeline::{ - test_util::{verify_asm_string, verify_pipeline}, - verify::verify, - Pipeline, Stage, -}; +use powdr_pipeline::{test_util::verify_asm_string, verify::verify, Pipeline, Stage}; use std::path::PathBuf; use test_log::test; @@ -177,7 +173,7 @@ fn test_evm() { .from_asm_string(powdr_asm, None) .add_data(666, &bytes); - verify_pipeline(pipeline); + powdr_pipeline::test_util::verify_pipeline(pipeline); } #[test]