remove print statement from test

This commit is contained in:
perissology 2017-12-19 16:56:26 -10:00
parent cc9d084327
commit a6593d32b3
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"name": "liquidpledging",
"name": "giveth-liquidpledging",
"version": "0.0.10",
"description": "Liquid Pledging Smart Contract",
"main": "index.js",

View File

@ -216,6 +216,5 @@ describe('DelegationChain test', function () {
await liquidPledging.transfer(1, 10, 1000, 2, { from: giver1, $extraGas: 100000 });
const pledge2 = await liquidPledging.getPledge(2);
assert.equal(pledge2.amount, 1000);
await printState(liquidPledgingState);
});
});