Remove unused constructor argument

This commit is contained in:
Francisco Giordano
2022-04-01 00:16:32 -03:00
parent 0762479dd5
commit 69c3781043

View File

@ -57,7 +57,7 @@ contract('CrossChainEnabled', function () {
describe('Arbitrum-L2', function () {
beforeEach(async function () {
this.bridge = await BridgeHelper.deploy('Arbitrum-L2');
this.receiver = await CrossChainEnabledArbitrumL2Mock.new(this.bridge.address);
this.receiver = await CrossChainEnabledArbitrumL2Mock.new();
});
shouldBehaveLikeReceiver();