Parcourir la source

Remove unused constructor argument

Francisco Giordano il y a 3 ans
Parent
commit
69c3781043
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      test/crosschain/CrossChainEnabled.test.js

+ 1 - 1
test/crosschain/CrossChainEnabled.test.js

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