Skip to content

Commit

Permalink
fix: failing operator test
Browse files Browse the repository at this point in the history
  • Loading branch information
blockchainguyy committed Jun 27, 2024
1 parent 508c811 commit e5816fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gateway/AxelarAmplifierGateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ describe('AxelarAmplifierGateway', () => {
[AddressZero, [weightedSigners]],
);

implementation = await gatewayFactory.deploy(
const implementation = await gatewayFactory.deploy(
previousSignersRetention,
domainSeparator,
minimumRotationDelay,
Expand All @@ -233,7 +233,7 @@ describe('AxelarAmplifierGateway', () => {
);
await proxy.deployTransaction.wait(network.config.confirmations);

gateway = gatewayFactory.attach(proxy.address);
const gateway = gatewayFactory.attach(proxy.address);

expect(await gateway.operator()).to.equal(AddressZero);
});
Expand Down

0 comments on commit e5816fa

Please sign in to comment.