feat: move mock solidity contracts to mocks/ folder

This commit is contained in:
Matt Condon
2017-11-24 14:41:49 +02:00
parent 58abd66969
commit 227a335399
40 changed files with 21 additions and 21 deletions

View File

@ -1,6 +1,6 @@
const assertRevert = require('./helpers/assertRevert');
const assertJump = require('./helpers/assertJump');
var SafeMathMock = artifacts.require('./helpers/SafeMathMock.sol');
var SafeMathMock = artifacts.require('./mocks/SafeMathMock.sol');
contract('SafeMath', function (accounts) {
let safeMath;