瀏覽代碼

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

test: fix the mocks path in ReentrancyGuard test
Francisco Giordano 7 年之前
父節點
當前提交
4ce0e211c5
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      test/ReentrancyGuard.test.js

+ 2 - 2
test/ReentrancyGuard.test.js

@@ -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;