Skip to content

Commit 70549b6

Browse files
committed
fix
1 parent e61f5a9 commit 70549b6

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

pipeline/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
33
pub mod pipeline;
44
pub mod test_runner;
5-
#[cfg(test)]
65
pub mod test_util;
76
pub mod util;
87

pipeline/tests/asm.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,8 @@ fn vm_to_block_array() {
305305
#[ignore = "Too slow"]
306306
#[cfg(feature = "plonky3")]
307307
fn dynamic_vadcop() {
308+
use std::collections::BTreeMap;
309+
308310
use powdr_backend::BackendType;
309311

310312
let f = "asm/dynamic_vadcop.asm";

pipeline/tests/pil.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ fn lookup_with_selector() {
4848
#[cfg(feature = "estark-starky")]
4949
#[should_panic = "Number not included: F3G { cube: [Fr(0x0000000000000000), Fr(0x0000000000000000), Fr(0x0000000000000000)], dim: 3 }"]
5050
fn lookup_with_selector_starky() {
51+
use powdr_pipeline::test_util::assert_proofs_fail_for_invalid_witnesses_estark;
5152
// witness[0] and witness[2] have to be in {2, 4}
5253

5354
let f = "pil/lookup_with_selector.pil";
@@ -87,6 +88,7 @@ fn permutation_with_selector() {
8788
#[cfg(feature = "estark-starky")]
8889
#[should_panic = "assertion failed: check_val._eq(&F::one())"]
8990
fn permutation_with_selector_starky() {
91+
use powdr_pipeline::test_util::assert_proofs_fail_for_invalid_witnesses_estark;
9092
// witness[0] and witness[2] have to be in {2, 4}
9193

9294
let f = "pil/permutation_with_selector.pil";

0 commit comments

Comments
 (0)