@@ -2272,7 +2272,7 @@ mod tests {
22722272
22732273 // Invalid/Non-existent argument should return `None`
22742274 {
2275- call_method!( $arg_count, provider, $method, |_, _, _, _| ( ( $invalid_args, None ) ) , tx_num, tx_hash, & in_memory_blocks[ 0 ] , & receipts) ;
2275+ call_method!( $arg_count, provider, $method, |_, _, _, _| ( $invalid_args, None ) , tx_num, tx_hash, & in_memory_blocks[ 0 ] , & receipts) ;
22762276 }
22772277
22782278 // Check that the item is only in memory and not in database
@@ -2283,7 +2283,7 @@ mod tests {
22832283 call_method!( $arg_count, provider, $method, |_, _, _, _| ( args. clone( ) , expected_item) , tx_num, tx_hash, last_mem_block, & receipts) ;
22842284
22852285 // Ensure the item is not in storage
2286- call_method!( $arg_count, provider. database, $method, |_, _, _, _| ( ( args, None ) ) , tx_num, tx_hash, last_mem_block, & receipts) ;
2286+ call_method!( $arg_count, provider. database, $method, |_, _, _, _| ( args, None ) , tx_num, tx_hash, last_mem_block, & receipts) ;
22872287 }
22882288 ) *
22892289 } } ;
0 commit comments