Skip to content

Commit

Permalink
PR Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asambler committed Feb 6, 2024
1 parent 2456336 commit 2a4a4ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
//! This library implements Nova, a high-speed recursive SNARK.
#![deny(
warnings,
unused,
future_incompatible,
nonstandard_style,
rust_2018_idioms,
Expand Down Expand Up @@ -1477,12 +1479,10 @@ mod tests {

// SAVE_GENERATED_KEYS_TO_JSON=true cargo +nightly test test_ivc_nontrivial_with_compression_pasta --release -- --nocapture
#[test]
fn test_ivc_nontrivial_with_compression_pasta() {
//get boolean args from commandline to generate keys to json
let generate_keys_to_json = std::env::var("SAVE_GENERATED_KEYS_TO_JSON").unwrap_or_default() == "true";
fn solidity_compatibility_e2e_pasta() {
type G1 = pasta_curves::pallas::Point;
type G2 = pasta_curves::vesta::Point;

test_ivc_nontrivial_with_compression_with::<G1, G2>(generate_keys_to_json);
test_ivc_nontrivial_with_compression_with::<G1, G2>(true);
}
}

0 comments on commit 2a4a4ff

Please sign in to comment.