From 2a4a4ffd6cd48efc4301c683c1bc1aad995a81c7 Mon Sep 17 00:00:00 2001 From: Artem Date: Tue, 6 Feb 2024 11:55:24 +0200 Subject: [PATCH] PR Fix --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b9efc9d4..fffcb128 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,7 @@ //! This library implements Nova, a high-speed recursive SNARK. #![deny( + warnings, + unused, future_incompatible, nonstandard_style, rust_2018_idioms, @@ -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::(generate_keys_to_json); + test_ivc_nontrivial_with_compression_with::(true); } }