Commit dca0eb84 authored by elenadimitrova's avatar elenadimitrova Committed by Elena Gesheva

Fix linting issue

parent 6c5c3195
...@@ -55,11 +55,13 @@ describe('OVM_L2StandardTokenFactory', () => { ...@@ -55,11 +55,13 @@ describe('OVM_L2StandardTokenFactory', () => {
}) })
it('should not be able to create a standard token with a 0 address for l1 token', async () => { it('should not be able to create a standard token with a 0 address for l1 token', async () => {
await expect(OVM_L2StandardTokenFactory.createStandardL2Token( await expect(
ethers.constants.AddressZero, OVM_L2StandardTokenFactory.createStandardL2Token(
'L2ERC20', ethers.constants.AddressZero,
'ERC' 'L2ERC20',
)).to.be.revertedWith('Must provide L1 token address') 'ERC'
)
).to.be.revertedWith('Must provide L1 token address')
}) })
}) })
}) })
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment