소스 검색

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