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 e5de945 commit ea6f704Copy full SHA for ea6f704
src/Warden/Core/IIterationProcessor.cs
@@ -248,7 +248,7 @@ private async Task InvokeAggregatedOnFirstSuccessHooksAsync(IEnumerable<WatcherE
248
249
private async Task InvokeAggregatedOnFailureHooksAsync(IEnumerable<WatcherExecutionResult> results)
250
{
251
- var invalidResults = results.Select(x => x.WardenCheckResult).Where(x => x.IsValid);
+ var invalidResults = results.Select(x => x.WardenCheckResult).Where(x => !x.IsValid);
252
_logger.Trace("Executing Aggregated Global Watcher hooks OnFailure.");
253
_configuration.AggregatedGlobalWatcherHooks.OnFailure.Execute(invalidResults);
254
_logger.Trace("Executing Aggregated Global Watcher hooks OnFailureAsync.");
0 commit comments