瀏覽代碼

Remove unused constructor argument

(cherry picked from commit 69c3781043b9671012c5b19fdea81784a70a5289)
Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com>
Francisco Giordano 3 年之前
父節點
當前提交
24953fb5c7
共有 1 個文件被更改,包括 1 次插入1 次删除
  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();