Skip to content

Commit

Permalink
Update pallets/api/src/fungibles/tests.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Daan van der Plas <93204684+Daanvdplas@users.noreply.github.com>
  • Loading branch information
chungquantin and Daanvdplas authored Jul 28, 2024
1 parent db387e8 commit a76efa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/api/src/fungibles/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fn decrease_allowance_works() {

assert_eq!(Assets::allowance(ASSET, &ALICE, &BOB), amount);

// Decrease allowance successfully
// Decrease allowance successfully.
assert_ok!(Fungibles::decrease_allowance(signed(ALICE), ASSET, BOB, amount / 2 - 1 * UNIT));
assert_eq!(Assets::allowance(ASSET, &ALICE, &BOB), amount / 2 + 1 * UNIT);

Expand Down

0 comments on commit a76efa0

Please sign in to comment.