@@ -1168,7 +1168,7 @@ pub mod tests {
11681168 my_dict_kvs. insert ( BeValue :: from ( & "b" . into ( ) ) , BeValue :: from ( & 2 . into ( ) ) ) ;
11691169 my_dict_kvs. insert ( BeValue :: from ( & "c" . into ( ) ) , BeValue :: from ( & 3 . into ( ) ) ) ;
11701170 let my_dict_as_mt = MerkleTree :: new ( 5 , & my_dict_kvs) . unwrap ( ) ;
1171- let dict = Value :: Dictionary ( Dictionary { mt : my_dict_as_mt} ) ;
1171+ let dict = Value :: Dictionary ( Dictionary { mt : my_dict_as_mt } ) ;
11721172 builder. insert ( "dict" , dict) ;
11731173
11741174 let mut signer = MockSigner {
@@ -1182,18 +1182,18 @@ pub mod tests {
11821182 let st1 = builder. op ( true , op ! ( new_entry, ( "key" , "a" ) ) ) . unwrap ( ) ;
11831183 let st2 = builder. literal ( false , & Value :: Int ( 1 ) ) . unwrap ( ) ;
11841184
1185- builder. pub_op (
1186- Operation (
1185+ builder
1186+ . pub_op ( Operation (
11871187 // OperationType
11881188 OperationType :: Native ( NativeOperation :: ContainsFromEntries ) ,
11891189 // Vec<OperationArg>
11901190 vec ! [
1191- OperationArg :: Statement ( st0) ,
1192- OperationArg :: Statement ( st1) ,
1193- OperationArg :: Statement ( st2) ,
1194- ]
1195- )
1196- ) . unwrap ( ) ;
1191+ OperationArg :: Statement ( st0) ,
1192+ OperationArg :: Statement ( st1) ,
1193+ OperationArg :: Statement ( st2) ,
1194+ ] ,
1195+ ) )
1196+ . unwrap ( ) ;
11971197 let mut main_prover = MockProver { } ;
11981198 let main_pod = builder. prove ( & mut main_prover, & params) . unwrap ( ) ;
11991199
0 commit comments