Skip to content

Commit

Permalink
fix: rename range_check_test_plan.rs to range_check_test.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
iajoiner committed Dec 16, 2024
1 parent cd790c4 commit db711cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 3 additions & 3 deletions crates/proof-of-sql/src/sql/proof_gadgets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use bitwise_verification::{verify_constant_abs_decomposition, verify_constant_si
mod bitwise_verification_test;
mod sign_expr;
pub(crate) use sign_expr::{prover_evaluate_sign, result_evaluate_sign, verifier_evaluate_sign};
#[cfg(all(test, feature = "blitzar"))]
mod sign_expr_test;
pub mod range_check;
#[cfg(all(test, feature = "blitzar"))]
pub mod range_check_test_plan;
pub mod range_check_test;
#[cfg(all(test, feature = "blitzar"))]
mod sign_expr_test;
4 changes: 1 addition & 3 deletions crates/proof-of-sql/src/sql/proof_gadgets/range_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,7 @@ mod tests {
use super::*;
use crate::{
base::scalar::{Curve25519Scalar as S, Scalar},
sql::{
proof::FinalRoundBuilder,
},
sql::proof::FinalRoundBuilder,
};
use bumpalo::Bump;
use num_traits::Inv;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ mod tests {
owned_table_utility::{owned_table, scalar},
ColumnRef, ColumnType, OwnedTableTestAccessor,
},
sql::{
proof::VerifiableQueryResult,
},
sql::proof::VerifiableQueryResult,
};
use blitzar::proof::InnerProductProof;

Expand Down

0 comments on commit db711cd

Please sign in to comment.