Skip to content

Commit

Permalink
Fix failing MPToken payment test
Browse files Browse the repository at this point in the history
  • Loading branch information
Bronek committed Dec 17, 2024
1 parent ad58166 commit f2dd852
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/app/MPToken_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -906,13 +906,13 @@ class MPToken_test : public beast::unit_test::suite
{.ownerCount = 1, .holderCount = 0, .flags = tfMPTCanTransfer});

// issuer to holder
mptAlice.pay(alice, bob, 100, tecNO_AUTH);
mptAlice.pay(alice, bob, 100, tecNO_LINE);

// holder to issuer
mptAlice.pay(bob, alice, 100, tecNO_AUTH);
mptAlice.pay(bob, alice, 100, tecNO_LINE);

// holder to holder
mptAlice.pay(bob, carol, 50, tecNO_AUTH);
mptAlice.pay(bob, carol, 50, tecNO_LINE);
}

// Payer doesn't have enough funds
Expand Down

0 comments on commit f2dd852

Please sign in to comment.