We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01936a9 commit 561cc60Copy full SHA for 561cc60
tests/GelatoAaveStewardInjectorCaps.t.sol
@@ -55,8 +55,7 @@ contract GelatoAaveStewardsInjectorCaps_Test is AaveStewardsInjectorCaps_Test {
55
function _checkAndPerformAutomation() internal virtual override returns (bool) {
56
(bool shouldRunKeeper, bytes memory encodedPerformData) = _stewardInjector.checkUpkeep('');
57
if (shouldRunKeeper) {
58
- (bool status, ) = address(_stewardInjector).call(encodedPerformData);
59
- assertTrue(status, 'Perform Upkeep Failed');
+ address(_stewardInjector).functionCall(encodedPerformData);
60
}
61
return shouldRunKeeper;
62
0 commit comments