Skip to content

Commit

Permalink
Ignore update notices.
Browse files Browse the repository at this point in the history
  • Loading branch information
zanvidmar committed Aug 31, 2023
1 parent 13855ad commit 0bf92fa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/behat/features/bootstrap/LogContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ protected function isIgnoredLogMessage($row) : bool {
// Ignore an existing bug.
// @todo https://www.drupal.org/project/social/issues/3320117
|| ($row->type === 'php' && (int) $row->severity === RfcLogLevel::WARNING && (str_contains($row->variables, 'Undefined array key "#comment_display_mode"') || str_contains($row->variables, 'Undefined array key "#comment_type"')))
// Ignore update notices.
|| ($row->type === 'update' && (int) $row->severity === RfcLogLevel::NOTICE)
;
}

Expand Down

0 comments on commit 0bf92fa

Please sign in to comment.