File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,11 @@ async fn create_mls_clients<'a>(
3131 web_server : & ' a std:: net:: SocketAddr ,
3232) -> Vec < Box < dyn clients:: EmulatedMlsClient > > {
3333 vec ! [
34- Box :: new( clients:: corecrypto:: android:: CoreCryptoAndroidClient :: new( ) . await . unwrap( ) ) ,
34+ Box :: new(
35+ clients:: corecrypto:: android:: CoreCryptoAndroidClient :: new( )
36+ . await
37+ . unwrap( ) ,
38+ ) ,
3539 #[ cfg( target_os = "ios" ) ]
3640 Box :: new( clients:: corecrypto:: ios:: CoreCryptoIosClient :: new( ) . await . unwrap( ) ) ,
3741 Box :: new(
@@ -54,7 +58,11 @@ async fn create_proteus_clients<'a>(
5458 web_server : & ' a std:: net:: SocketAddr ,
5559) -> Vec < Box < dyn clients:: EmulatedProteusClient > > {
5660 vec ! [
57- Box :: new( clients:: corecrypto:: android:: CoreCryptoAndroidClient :: new( ) . await . unwrap( ) ) ,
61+ Box :: new(
62+ clients:: corecrypto:: android:: CoreCryptoAndroidClient :: new( )
63+ . await
64+ . unwrap( ) ,
65+ ) ,
5866 #[ cfg( target_os = "ios" ) ]
5967 Box :: new( clients:: corecrypto:: ios:: CoreCryptoIosClient :: new( ) . await . unwrap( ) ) ,
6068 Box :: new(
You can’t perform that action at this time.
0 commit comments