From e6c0b9e8848e13097a890456d3d39fec78a41b56 Mon Sep 17 00:00:00 2001 From: Brechy Date: Fri, 14 Jun 2024 18:09:13 -0300 Subject: [PATCH] fix fmt --- src/arithmetic_circuit.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arithmetic_circuit.rs b/src/arithmetic_circuit.rs index 2694bd5..7b74861 100644 --- a/src/arithmetic_circuit.rs +++ b/src/arithmetic_circuit.rs @@ -215,9 +215,9 @@ impl BristolLine { #[cfg(test)] mod tests { - use std::io::{BufReader, Cursor}; - use crate::compiler::AGateType; use super::*; + use crate::compiler::AGateType; + use std::io::{BufReader, Cursor}; // Helper function to create a sample ArithmeticCircuit fn create_sample_circuit() -> ArithmeticCircuit {