Skip to content

Commit a5642c6

Browse files
committed
Fix test
1 parent 1b13b02 commit a5642c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pondo-bot/src/tests/cases/tokenDisbursement.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ describe('Token Disbursement and Time Oracle', async () => {
741741
assert(cancelAccepted, `Cancel was rejected, but should have been accepted`);
742742

743743
const balanceAfter = await getMTSPBalance(adminAddress, PALEO_TOKEN_ID, true);
744-
const expectedBalance = balanceBefore - tokenAmount2;
744+
const expectedBalance = balanceBefore + tokenAmount2;
745745
assert(balanceAfter == expectedBalance, `Admin balance should be ${expectedBalance} but is ${balanceAfter}`);
746746
});
747747
});

0 commit comments

Comments
 (0)