Remove unused constructor argument

(cherry picked from commit 69c3781043)
Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com>
This commit is contained in:
Francisco Giordano
2022-04-01 00:16:32 -03:00
committed by Hadrien Croubois
parent a57bd14c0c
commit 24953fb5c7

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();