Skip to content

Commit

Permalink
fix crate import issue in cargo test
Browse files Browse the repository at this point in the history
  • Loading branch information
dloghin committed Feb 28, 2024
1 parent 65effe5 commit 02c0816
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions plonky2/src/hash/poseidon_bn128.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,9 @@ impl GenericConfig<2> for PoseidonBN128GoldilocksConfig {
#[cfg(test)]
mod tests {
use anyhow::Result;
use plonky2::field::types::Field;
use plonky2::plonk::config::{GenericConfig, Hasher, PoseidonGoldilocksConfig};

use crate::config::PoseidonBN128Hash;
use plonky2_field::types::Field;
use crate::plonk::config::{GenericConfig, Hasher, PoseidonGoldilocksConfig};
use crate::hash::poseidon_bn128::PoseidonBN128Hash;

#[test]
fn test_poseidon_bn128() -> Result<()> {
Expand Down

0 comments on commit 02c0816

Please sign in to comment.