Skip to content
Snippets Groups Projects

Issue #3312619: Fix various incorrect @param values for $messages

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
  • 20fb1244
    change... · 20fb1244
    Ted Bowman authored
    change \Drupal\Tests\automatic_updates\Traits\ValidationTestTrait::createValidationResult to use translation
@@ -48,7 +48,7 @@ trait ValidationTestTrait {
$messages = [];
$random = $this->randomMachineName(64);
for ($i = 0; $i < $message_count; $i++) {
$messages[] = "Message $i $random";
$messages[] = t("Message @i @random", ['@i' => $i, '@random' => $random]);
}
$summary = t('Summary @random', ['@random' => $random]);
switch ($severity) {
Loading