Browse Source

Re-enable ERC4626 property test on empty vaults (#4068)

Hadrien Croubois 2 years ago
parent
commit
7b3e7b7055
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/token/ERC20/extensions/ERC4626.t.sol

+ 1 - 1
test/token/ERC20/extensions/ERC4626.t.sol

@@ -12,7 +12,7 @@ contract ERC4626StdTest is ERC4626Test {
         _underlying_ = address(new ERC20Mock());
         _vault_ = address(new ERC4626Mock(_underlying_));
         _delta_ = 0;
-        _vaultMayBeEmpty = false;
+        _vaultMayBeEmpty = true;
         _unlimitedAmount = true;
     }
 }