Merge pull request #604 from elopio/tests/fix-ReentrancyGuard

test: fix the mocks path in ReentrancyGuard test
This commit is contained in:
Francisco Giordano
2017-12-22 18:41:58 -03:00
committed by GitHub

View File

@ -1,7 +1,7 @@
import expectThrow from './helpers/expectThrow';
const ReentrancyMock = artifacts.require('./helper/ReentrancyMock.sol');
const ReentrancyAttack = artifacts.require('./helper/ReentrancyAttack.sol');
const ReentrancyMock = artifacts.require('./mocks/ReentrancyMock.sol');
const ReentrancyAttack = artifacts.require('./mocks/ReentrancyAttack.sol');
contract('ReentrancyGuard', function (accounts) {
let reentrancyMock;