Skip to content
This repository has been archived by the owner on Nov 13, 2022. It is now read-only.

Commit

Permalink
Resolved fully qualified names error
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaSerpentis committed Jun 7, 2021
1 parent ceda00a commit d5cf73a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('TestToken contract', () => {

beforeEach(async () => {
TestToken = await ethers.getContractFactory('TestToken');
Factory = await ethers.getContractFactory('Factory');
Factory = await ethers.getContractFactory('contracts\\experimenting\\Factory.sol:Factory');

[deployer, manager, fake_airswap, fake_controller] = await ethers.getSigners();
testToken = await TestToken.deploy("Asset Token", "ASSET", 6, 100000e6);
Expand Down
2 changes: 1 addition & 1 deletion test/SimpleVaultToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('VaultToken contract (simple test)', () => {
let VaultToken, TestToken, vaultToken, testToken, manager, depositor, fake_controller, fake_airswap;

before(async () => {
VaultToken = await ethers.getContractFactory('VaultToken');
VaultToken = await ethers.getContractFactory('contracts\\experimenting\\VaultToken.sol:VaultToken');
TestToken = await ethers.getContractFactory('TestToken');
[manager, depositor, fake_controller, fake_airswap] = await ethers.getSigners();

Expand Down

0 comments on commit d5cf73a

Please sign in to comment.