Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TokenDestructible typo fron->from
  • Loading branch information
shrugs committed Dec 31, 2017
commit 7aa6f21147a8710b2bf14d90969f4d9f470e8723
5 changes: 4 additions & 1 deletion test/TokenDestructible.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down