Disable clippy::{many_single_char_names,op_ref} lint in integration test.

This commit is contained in:
Sean Bowe 2021-02-26 10:33:59 -07:00
parent cb59a40ff8
commit 504203654d
No known key found for this signature in database
GPG key ID: 95684257D8F8B031

View file

@ -1,3 +1,6 @@
#![allow(clippy::many_single_char_names)]
#![allow(clippy::op_ref)]
use group::Curve;
use halo2::arithmetic::FieldExt;
use halo2::dev::MockProver;