Browse Source

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

test: fix the mocks path in ReentrancyGuard test
Francisco Giordano 7 years ago
parent
commit
4ce0e211c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/ReentrancyGuard.test.js

+ 2 - 2
test/ReentrancyGuard.test.js

@@ -1,7 +1,7 @@
 
 
 import expectThrow from './helpers/expectThrow';
 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) {
 contract('ReentrancyGuard', function (accounts) {
   let reentrancyMock;
   let reentrancyMock;