Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
akildemir committed Sep 27, 2024
1 parent 5ab6268 commit 2379b5c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions substrate/dex/pallet/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,10 +414,7 @@ fn can_quote_price() {
assert_ok!(Dex::create_pool(coin2.try_into().unwrap()));

assert_ok!(CoinsPallet::<Test>::mint(user, Balance { coin: coin1, amount: Amount(100000) }));
assert_ok!(CoinsPallet::<Test>::mint(
user,
Balance { coin: coin2.into(), amount: Amount(1000) }
));
assert_ok!(CoinsPallet::<Test>::mint(user, Balance { coin: coin2, amount: Amount(1000) }));

assert_ok!(Dex::add_liquidity(
RuntimeOrigin::signed(user),
Expand Down

0 comments on commit 2379b5c

Please sign in to comment.