Skip to content

Commit 367ebea

Browse files
authored
build: fix issue that was making tests to fail in CI (Linux) (#229)
1 parent 8757732 commit 367ebea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/lib/deployment.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ export async function deployEpochManager(owner: string): Promise<EpochManager> {
7171
}
7272

7373
export async function deployGNS(owner: string, didRegistry: string): Promise<Gns> {
74-
const Gns = await ethers.getContractFactory('Gns')
75-
return Gns.deploy(owner, didRegistry) as Promise<Gns>
74+
const GNS = await ethers.getContractFactory('GNS')
75+
return GNS.deploy(owner, didRegistry) as Promise<Gns>
7676
}
7777

7878
export async function deployEthereumDIDRegistry(): Promise<EthereumDidRegistry> {
79-
const EthereumDidRegistry = await ethers.getContractFactory('EthereumDidRegistry')
80-
return EthereumDidRegistry.deploy() as Promise<EthereumDidRegistry>
79+
const EthereumDIDRegistry = await ethers.getContractFactory('EthereumDIDRegistry')
80+
return EthereumDIDRegistry.deploy() as Promise<EthereumDidRegistry>
8181
}
8282

8383
export async function deployServiceRegistry(): Promise<ServiceRegistry> {

0 commit comments

Comments
 (0)