From a2e8c7d808ca30d3fbf48127bde3351c02f4a30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Federico=20Mart=C3=ADn=20Alconada=20Verzini?= Date: Mon, 22 Jan 2024 19:36:50 -0300 Subject: [PATCH] chore: rmv wrong test --- test/wallet/recovery/Recovery.t.sol | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/wallet/recovery/Recovery.t.sol b/test/wallet/recovery/Recovery.t.sol index 2a0a9dd64..8dacb3b7c 100644 --- a/test/wallet/recovery/Recovery.t.sol +++ b/test/wallet/recovery/Recovery.t.sol @@ -187,12 +187,4 @@ contract RecoveryTest is KintoWalletTest { vm.expectRevert("KW-cr: invalid address"); _kintoWallet.changeRecoverer(payable(address(0))); } - - // todo: change recoverer to a non KKYC'd address - // todo: we don't want to allow recoverer to be a non KYC'd, right? - function testChangeRecoverer_RevertWhen_RecovererIsNotKYCd() public { - vm.prank(address(_walletFactory)); - vm.expectRevert("KW-cr: invalid address"); - _kintoWallet.changeRecoverer(payable(address(123))); - } }