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

Fix linting issue

parent 6c5c3195
......@@ -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 () => {
await expect(OVM_L2StandardTokenFactory.createStandardL2Token(
ethers.constants.AddressZero,
'L2ERC20',
'ERC'
)).to.be.revertedWith('Must provide L1 token address')
await expect(
OVM_L2StandardTokenFactory.createStandardL2Token(
ethers.constants.AddressZero,
'L2ERC20',
'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