Commit 00f80c72 by Francisco Giordano

fix reference to mock contract

parent 74db6c2b
...@@ -33,7 +33,7 @@ contract('BasicToken', function(accounts) { ...@@ -33,7 +33,7 @@ contract('BasicToken', function(accounts) {
}); });
it('should throw an error when trying to transfer to 0x0', async function() { it('should throw an error when trying to transfer to 0x0', async function() {
let token = await StandardTokenMock.new(accounts[0], 100); let token = await BasicTokenMock.new(accounts[0], 100);
try { try {
let transfer = await token.transfer(0x0, 100); let transfer = await token.transfer(0x0, 100);
assert.fail('should have thrown before'); assert.fail('should have thrown before');
......
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