assertion update

pull/3236/head
Aniket-Engg 2 years ago committed by Aniket
parent e4dfda0cb1
commit 4405ac39ef
  1. 2
      libs/remix-ws-templates/src/templates/ozerc20/tests/MyToken_mintable_test.sol

@ -87,7 +87,7 @@ contract MyTokenTest is MyToken {
function testTokenTransferfrom() public {
Assert.equal(allowance(acc0, acc3), 500, "token allowance did not match");
transferFrom(acc0, acc4, 400);
Assert.equal(balanceOf(acc4), 500, "acc4 token balance did not match");
Assert.equal(balanceOf(acc4), 400, "acc4 token balance did not match");
Assert.equal(allowance(acc0, acc3), 100, "token allowance did not match");
}

Loading…
Cancel
Save