Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Comment out removed code from safe email plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jacque006 committed Apr 23, 2024
1 parent 276caf4 commit ca65c54
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/plugins/test/unit/safe/SafeZkEmailRecoveryPlugin.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,10 @@ contract SafeZkEmailRecoveryPluginTest is TestHelper {

// Act & Assert
vm.startPrank(recoveryAccount);
vm.expectRevert(
SafeZkEmailRecoveryPlugin.RECOVERY_NOT_CONFIGURED.selector
);
// TODO Chekc if still needed in follow up work
// vm.expectRevert(
// SafeZkEmailRecoveryPlugin.RECOVERY_NOT_CONFIGURED.selector
// );
safeZkEmailRecoveryPlugin.exposedProcessRecovery(
guardian,
templateIdx,
Expand Down Expand Up @@ -620,7 +621,8 @@ contract SafeZkEmailRecoveryPluginTest is TestHelper {

vm.expectEmit(true, false, false, false);
emit RecoveryDelaySet(safeAddress, delay);
safeZkEmailRecoveryPlugin.setRecoveryDelay(delay);
// TODO Chekc if still needed in follow up work
// safeZkEmailRecoveryPlugin.setRecoveryDelay(delay);
vm.stopPrank();

Vm.Wallet memory newOwner = Carol;
Expand Down

0 comments on commit ca65c54

Please sign in to comment.