diff --git a/test/helpers/VestedTokenMock.sol b/test/helpers/VestedTokenMock.sol deleted file mode 100644 index c607cae62..000000000 --- a/test/helpers/VestedTokenMock.sol +++ /dev/null @@ -1,11 +0,0 @@ -pragma solidity ^0.4.11; - -import '../../contracts/token/VestedToken.sol'; - -// mock class using StandardToken -contract VestedTokenMock is VestedToken { - function VestedTokenMock(address initialAccount, uint256 initialBalance) { - balances[initialAccount] = initialBalance; - totalSupply = initialBalance; - } -}