Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Amiel committed Nov 1, 2023
1 parent 854ce5d commit 2c57eae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/tokenRegistrars.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ describe('Token Registrsrs', () => {
let params = defaultAbiCoder.encode(['bytes', 'address'], [standardizedTokenRegistrar.address, tokenAddress]);
const tokenManager = new Contract(await service.tokenManagerAddress(tokenId), ITokenManager.abi, wallet);
const token = new Contract(tokenAddress, IERC20.abi, wallet);

await expect(standardizedTokenRegistrar.deployStandardizedToken(salt, name, symbol, decimals, mintAmount, wallet.address))
.to.emit(service, 'StandardizedTokenDeployed')
.withArgs(tokenId, tokenAddress, wallet.address, name, symbol, decimals, mintAmount, standardizedTokenRegistrar.address)
Expand All @@ -186,7 +187,7 @@ describe('Token Registrsrs', () => {
symbol,
decimals,
wallet.address.toLowerCase(),
'0x',
wallet.address.toLowerCase(),
mintAmount,
wallet.address.toLowerCase(),
],
Expand All @@ -212,7 +213,7 @@ describe('Token Registrsrs', () => {
symbol,
decimals,
wallet.address.toLowerCase(),
'0x',
wallet.address.toLowerCase(),
mintAmount,
wallet.address.toLowerCase(),
destinationChain,
Expand Down

0 comments on commit 2c57eae

Please sign in to comment.