Commit 7aa6f211 by Matt Condon

fix: TokenDestructible typo fron->from

parent 323d1fa9
......@@ -7,7 +7,10 @@ contract('TokenDestructible', function (accounts) {
let destructible;
beforeEach(async function () {
destructible = await TokenDestructible.new({ fron: accounts[0], value: web3.toWei('10', 'ether') });
destructible = await TokenDestructible.new({
from: accounts[0],
value: web3.toWei('10', 'ether'),
});
});
it('should send balance to owner after destruction', async function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment