Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
0xripleys committed Sep 26, 2024
1 parent 333fe17 commit 6f5a427
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions token-lending/program/tests/donate_to_reserve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ async fn test_donate_to_reserve() {
.await
.unwrap();

let reserve_post = test
.load_account::<Reserve>(reserves[0].pubkey)
.await;
let reserve_post = test.load_account::<Reserve>(reserves[0].pubkey).await;

assert_eq!(reserve_post.account.liquidity.available_amount, 200_000 * FRACTIONAL_TO_USDC);
assert_eq!(
reserve_post.account.liquidity.available_amount,
200_000 * FRACTIONAL_TO_USDC
);

let (balance_changes, _) = balance_checker.find_balance_changes(&mut test).await;
let expected_balance_changes = HashSet::from([
Expand Down

0 comments on commit 6f5a427

Please sign in to comment.