From dda716ea256d40cf9fe71a80f83fc83a37237c51 Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Thu, 8 Nov 2012 21:49:05 -0800 Subject: [PATCH] Issue #1833928 by Berdir: Fixed Random test failure in Drupal\user\Tests\UserAccountLinksTests. --- .../user/lib/Drupal/user/Tests/UserAccountLinksTests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAccountLinksTests.php b/core/modules/user/lib/Drupal/user/Tests/UserAccountLinksTests.php index a813f9fda0b0..8b79b69622af 100644 --- a/core/modules/user/lib/Drupal/user/Tests/UserAccountLinksTests.php +++ b/core/modules/user/lib/Drupal/user/Tests/UserAccountLinksTests.php @@ -114,7 +114,7 @@ function testAccountPageTitles() { $this->assertTitle('Request new password' . $title_suffix, "Page title of /user/register is 'Request new password' for anonymous users."); // Tests the default fallback title. - $this->drupalGet('user/password/' . $this->randomString()); + $this->drupalGet('user/password/' . $this->randomName()); $this->assertTitle('User account' . $title_suffix, "Fallback page title for user pages is 'User account' for anonymous users."); // Check the page title for registered users is "My Account" in menus. -- GitLab