Skip to content

Commit 479289b

Browse files
committed
fmt
1 parent 127dfeb commit 479289b

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

orange-sdk/tests/integration_tests.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -982,8 +982,11 @@ async fn test_pay_onchain_from_channel() {
982982
let bal = wallet.get_balance().await.unwrap();
983983
// fixme change to exact match once we have the real feee
984984
assert!(
985-
bal.available_balance() <
986-
starting_bal.available_balance().saturating_sub(send_amount).saturating_sub(payment.fee.unwrap())
985+
bal.available_balance()
986+
< starting_bal
987+
.available_balance()
988+
.saturating_sub(send_amount)
989+
.saturating_sub(payment.fee.unwrap())
987990
);
988991

989992
// Wait for third party node to receive it

0 commit comments

Comments
 (0)