From 7d1eb5cfa1e44ffec0ecc79c42816d82dc0c184b Mon Sep 17 00:00:00 2001 From: J Date: Tue, 7 Nov 2023 14:49:09 +0100 Subject: [PATCH] fix: fmt --- programs/marginfi/tests/marginfi_account.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/programs/marginfi/tests/marginfi_account.rs b/programs/marginfi/tests/marginfi_account.rs index ed9ef7e2..5a3628ed 100644 --- a/programs/marginfi/tests/marginfi_account.rs +++ b/programs/marginfi/tests/marginfi_account.rs @@ -1824,7 +1824,12 @@ async fn lending_account_close_balance() -> anyhow::Result<()> { // Liability share in balance is smaller than 0.0001, so repay all should fail let res = borrower_mfi_account_f - .try_bank_repay(borrower_token_account_f_sol_eq.key, sol_eq_bank, 1, Some(true)) + .try_bank_repay( + borrower_token_account_f_sol_eq.key, + sol_eq_bank, + 1, + Some(true), + ) .await; assert!(res.is_err()); assert_custom_error!(res.unwrap_err(), MarginfiError::NoLiabilityFound);