fix: reference contract name rather than filepath (#698)
This commit is contained in:
committed by
Francisco Giordano
parent
a5d5867092
commit
f4228f1b49
@ -1,5 +1,5 @@
|
||||
var ECRecoveryMock = artifacts.require('ECRecoveryMock.sol');
|
||||
var ECRecoveryLib = artifacts.require('ECRecovery.sol');
|
||||
var ECRecoveryMock = artifacts.require('ECRecoveryMock');
|
||||
var ECRecoveryLib = artifacts.require('ECRecovery');
|
||||
|
||||
var hashMessage = require('../helpers/hashMessage.js');
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
var MathMock = artifacts.require('../mocks/MathMock.sol');
|
||||
var MathMock = artifacts.require('MathMock');
|
||||
|
||||
contract('Math', function (accounts) {
|
||||
let math;
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
import MerkleTree from '../helpers/merkleTree.js';
|
||||
import { sha3, bufferToHex } from 'ethereumjs-util';
|
||||
|
||||
var MerkleProof = artifacts.require('MerkleProof.sol');
|
||||
var MerkleProof = artifacts.require('MerkleProof');
|
||||
|
||||
contract('MerkleProof', function (accounts) {
|
||||
let merkleProof;
|
||||
|
||||
Reference in New Issue
Block a user