@@ -1271,7 +1271,8 @@ mod test {
1271
1271
{
1272
1272
let accounting_response =
1273
1273
get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) )
1274
- . await . expect ( "shoul get accounting" ) ;
1274
+ . await
1275
+ . expect ( "shoul get accounting" ) ;
1275
1276
1276
1277
assert_eq ! ( accounting_response. balances. earners. len( ) , 0 ) ;
1277
1278
assert_eq ! ( accounting_response. balances. spenders. len( ) , 0 ) ;
@@ -1296,7 +1297,8 @@ mod test {
1296
1297
1297
1298
let accounting_response =
1298
1299
get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) )
1299
- . await . expect ( "should get accounting" ) ;
1300
+ . await
1301
+ . expect ( "should get accounting" ) ;
1300
1302
1301
1303
assert_eq ! ( balances, accounting_response. balances) ;
1302
1304
}
@@ -1329,7 +1331,8 @@ mod test {
1329
1331
1330
1332
let accounting_response =
1331
1333
get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) )
1332
- . await . expect ( "shoul get accounting" ) ;
1334
+ . await
1335
+ . expect ( "shoul get accounting" ) ;
1333
1336
1334
1337
assert_eq ! ( balances, accounting_response. balances)
1335
1338
}
@@ -1386,10 +1389,13 @@ mod test {
1386
1389
Extension ( channel_context. clone ( ) ) ,
1387
1390
Path ( ( channel_context. context . id ( ) , * CREATOR ) ) ,
1388
1391
)
1389
- . await . expect ( "should get spender leaf" ) ;
1392
+ . await
1393
+ . expect ( "should get spender leaf" ) ;
1390
1394
1391
1395
let accounting_response =
1392
- get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) ) . await . expect ( "should get accounting" ) ;
1396
+ get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) )
1397
+ . await
1398
+ . expect ( "should get accounting" ) ;
1393
1399
1394
1400
// Making sure a new entry has been created
1395
1401
assert_eq ! (
@@ -1413,7 +1419,9 @@ mod test {
1413
1419
. expect ( "should spend" ) ;
1414
1420
1415
1421
let accounting_response =
1416
- get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) ) . await . expect ( "should get accounting" ) ;
1422
+ get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) )
1423
+ . await
1424
+ . expect ( "should get accounting" ) ;
1417
1425
1418
1426
assert_eq ! ( balances, accounting_response. balances) ;
1419
1427
@@ -1426,7 +1434,9 @@ mod test {
1426
1434
assert ! ( res. is_ok( ) ) ;
1427
1435
1428
1436
let accounting_response =
1429
- get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) ) . await . expect ( "should get accounting" ) ;
1437
+ get_accounting_for_channel_axum ( app. clone ( ) , Extension ( channel_context. clone ( ) ) )
1438
+ . await
1439
+ . expect ( "should get accounting" ) ;
1430
1440
1431
1441
// Balances shouldn't change
1432
1442
assert_eq ! (
0 commit comments