Skip to content

Commit

Permalink
fix: 🐛 format
Browse files Browse the repository at this point in the history
  • Loading branch information
yooml committed Sep 7, 2023
1 parent c7bec8b commit 045a683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions pallets/lend-market/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,7 @@ fn borrow_allowed_works() {
#[test]
fn update_liquidation_free_collateral_works() {
new_test_ext().execute_with(|| {
assert_ok!(Loans::update_liquidation_free_collateral(
RuntimeOrigin::root(),
vec![PHA]
));
assert_ok!(Loans::update_liquidation_free_collateral(RuntimeOrigin::root(), vec![PHA]));
assert_eq!(Loans::liquidation_free_collaterals(), vec![PHA]);
})
}
Expand Down
2 changes: 1 addition & 1 deletion pallets/lend-market/src/tests/market.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::{
mock::{
market_mock, new_test_ext, Loans, RuntimeOrigin, Test, ACTIVE_MARKET_MOCK, ALICE, DOT,
MARKET_MOCK, LDOT, LUSDT, VDOT,
LDOT, LUSDT, MARKET_MOCK, VDOT,
},
Error, InterestRateModel, MarketState,
};
Expand Down

0 comments on commit 045a683

Please sign in to comment.