test: fix the mocks path in ReentrancyGuard test

This commit is contained in:
Leo Arias
2017-12-08 02:57:29 +00:00
parent ddcae6254e
commit 4bb26c32b6

View File

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