@@ -370,10 +370,10 @@ describe('@send - Send', () => {
370370 // max amount (lightning)
371371 // Android shows raw `maxSendLightningSats` (7k - 1k reserve = 6k).
372372 // iOS subtracts an estimated routing fee which includes a hardcoded 2 sat buffer (see SendAmountView.calculateRoutingFee()).
373- await expectText ( driver . isIOS ? '5 998' : '6 000 ', { strategy : 'contains' } ) ;
373+ await expectText ( '5 998' , { strategy : 'contains' } ) ;
374374 await tap ( 'AssetButton-switch' ) ;
375375 // max amount (onchain)
376- await expectText ( driver . isIOS ? '5 998' : '6 000 ', { visible : false , strategy : 'contains' } ) ;
376+ await expectText ( '5 998' , { visible : false , strategy : 'contains' } ) ;
377377 await tap ( 'AssetButton-switch' ) ;
378378 await tap ( 'N1' ) ;
379379 await multiTap ( 'N0' , 3 ) ;
@@ -398,7 +398,7 @@ describe('@send - Send', () => {
398398 // max amount (lightning)
399399 await tap ( 'AvailableAmount' ) ;
400400 await tap ( 'ContinueAmount' ) ;
401- await expectText ( driver . isIOS ? '4 998' : '5 000 ', { strategy : 'contains' } ) ;
401+ await expectText ( '4 998' , { strategy : 'contains' } ) ;
402402 // expect toast about reserve balance
403403 await expectText ( 'Reserve Balance' ) ;
404404 await tap ( 'NavigationBack' ) ;
@@ -412,7 +412,7 @@ describe('@send - Send', () => {
412412 await tap ( 'NRemove' ) ;
413413 }
414414 await tap ( 'ContinueAmount' ) ;
415- await expectText ( driver . isIOS ? '4 998' : '5 000 ', { visible : false , strategy : 'contains' } ) ;
415+ await expectText ( '4 998' , { visible : false , strategy : 'contains' } ) ;
416416 await tap ( 'NavigationBack' ) ;
417417 await multiTap ( 'NRemove' , 6 ) ;
418418 await tap ( 'N1' ) ;
0 commit comments