From 3c5e1ce0ed9db1f48f7bc11fe64ae5ecc578fd1e Mon Sep 17 00:00:00 2001 From: eukadish Date: Wed, 18 Sep 2024 16:54:41 -0400 Subject: [PATCH] add check for passing test --- test/morpho/MorphoUnderlyingAdapter.t.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/test/morpho/MorphoUnderlyingAdapter.t.sol b/test/morpho/MorphoUnderlyingAdapter.t.sol index cac67d4..d66b3a2 100644 --- a/test/morpho/MorphoUnderlyingAdapter.t.sol +++ b/test/morpho/MorphoUnderlyingAdapter.t.sol @@ -498,6 +498,7 @@ contract MorphoUnderlyingAdapterTest is Test { function testRecover(uint256 _amount, address _reciever) external { vm.assume(_reciever != address(0)); + vm.assume(_reciever != address(adapter)); ERC20 testToken = new ERC20("Test Token", "TTT"); deal(address(testToken), address(adapter), _amount);